var euroexchrate = 1.10102;
	function getEURO(price) {   
	var EURO = price * euroexchrate; 
		if (EURO.toFixed) {  
			EURO = EURO.toFixed(0);
		} else {    
		EURO = Math.round(EURO*100)/100;
	} 
document.write(EURO);
}

var dkkexchrate = 8.19509;
	function getDKK(price) {   
	var DKK = price * dkkexchrate; 
		if (DKK.toFixed) {  
			DKK = DKK.toFixed(0);
		} else {    
		DKK = Math.round(DKK*100)/100;
	} 
document.write(DKK);
}  

var sekexchrate = 11.5022;
	function getSEK(price) {   
	var SEK = price * sekexchrate; 
		if (SEK.toFixed) {  
			SEK = SEK.toFixed(0);
		} else {    
		SEK = Math.round(SEK*100)/100;
	} 
document.write(SEK);
}  

var usdexchrate = 1.65802;
	function getUSD(price) {   
	var USD = price * usdexchrate; 
		if (USD.toFixed) {  
			USD = USD.toFixed(0);
		} else {    
		USD = Math.round(USD*100)/100;
	} 
document.write(USD);
}  

var yenexchrate = 143.846;
	function getYEN(price) {   
	var YEN = price * yenexchrate; 
		if (YEN.toFixed) {  
			YEN = YEN.toFixed(0);
		} else {    
		YEN = Math.round(YEN*100)/100;
	} 
document.write(YEN);
}  

var audexchrate = 1.80714;
	function getAUD(price) {   
	var AUD = price * audexchrate; 
		if (AUD.toFixed) {  
			AUD = AUD.toFixed(0);
		} else {    
		AUD = Math.round(AUD*100)/100;
	} 
document.write(AUD);
}  