function text(am,cu){
var cText = ''
var amm = 0
if(cu == 0) {

	amm= Math.round((am * 1.175)*100)/100
	 cText += "UK inc vat &pound;"+amm+"<BR>"
	 
	 amm= Math.round((am * 1.49)*100)/100
	 cText += "US Dollars $"+amm
}else{
	 amm= Math.round((am * 1.11)*100)/100
   	cText += 'Euro &euro;'+amm
}

document.write(cText)
}
