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

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

document.write(cText)
}

function jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

