If you are a professional producer, sound designer, engineer or are part of a commercial studio and wish to audition a product on-site in your studio, then you’re in the right place.
We specialize in hands on one-to-one demonstrations of pro audio equipment such as; monitors & outboard and also provide demonstrations for our range of boutique synthesizers and effects.
// update calculator when the finance option changes
var financeoption = document.getElementById("financecode");
financeoption.onchange = function()
{
// update the calculator
var financecode = document.getElementById("financecode");
var res = financecode.value.split("-");
var theterm = res[0].replace( /^\D+/g, '');
var theapr = res[1];
var fdeposit = document.getElementById("financedeposit");
var loanval = productvalue.value - fdeposit.value;
updateomnicalc (theterm, loanval, theapr);
}
// update calculator when the deposit option changes
var depositoption = document.getElementById("financedeposit");
depositoption.onchange = function()
{
// update the calculator
var financecode = document.getElementById("financecode");
var res = financecode.value.split("-");
var theterm = res[0].replace( /^\D+/g, '');
var theapr = res[1];
var fdeposit = document.getElementById("financedeposit");
var loanval = productvalue.value - fdeposit.value;
updateomnicalc (theterm, loanval, theapr);
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}