Session guitarist Tim Pierce (Bon Jovi, Bruce Springsteen, Carlos Santana, Shakira, Don Henley plus many more) has chosen the Kahayan 12k72 has his trusted ‘goto’ preamp. In this video he details how the sound of the 12k72 became his number one choice.
// 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";
}
}