var inchexchrate = 0.0393700787;
	function getINCH(price) {   
	var INCH = price * inchexchrate; 
		if (INCH.toFixed) {  
			INCH = INCH.toFixed(1);
		} else {    
		INCH = Math.round(INCH*100)/100;
	} 
document.write(INCH);
}