function text(am,cu){
var cText = ''
var amm = 0
if(cu == 0) {
	 amm= Math.round((am * 1.62)*100)/100
	 cText += amm
	cText += ' USD'
}else{
	 amm= Math.round((am * 1.19)*100)/100
	 cText += amm
	cText += ' EURO'
}
document.write(cText)
}

function text2(am){
var cText = ''
amm= Math.round((am * 1.62)*100)/100
cText += amm
cText += ' USD<BR>'
amm= Math.round((am * 1.19)*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;
}