exchRate = 1.2; 



function getCAD(price) { 
var anumber = price * exchRate;
document.write(anumber.toFixed(2)); 
} 

