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.62)*100)/100
	cText +='$'
	 cText += amm
	cText += ' USD'
}else{
	 amm= Math.round((am * 1.17)*100)/100
	cText +='&euro;'
	 cText += amm
	cText += ' EURO'
}
document.write(cText)
}

function text3(am,cu){
var cText = ''
var amm = 0
amm= Math.round((am * 1.175)*100)/100
	 cText += "UK inc vat &pound;"+amm+"<BR>"
	 amm= Math.round((am * 1.62)*100)/100
	cText +='$'
	 cText += amm
	cText += ' USD'
document.write(cText)
cText = ''
amm = 0
	 amm= Math.round((am * 1.17)*100)/100
	cText +='  &euro;'
	 cText += amm
	cText += ' EURO'

document.write(cText)
}


function text2(am){
var cText = ''
amm= Math.round((am * 1.175)*100)/100
	 cText += "UK inc vat &pound;"+amm+"<BR>"
amm= Math.round((am * 1.62)*100)/100
cText += amm
cText += ' USD<BR>'
amm= Math.round((am * 1.17)*100)/100
cText += amm
cText += ' EURO'
document.write(cText)
}

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