function CurrencyPopup(){
imgWindow=window.open ('http://www.xe.net/ecc/input.cgi?Template=sw', 'CurrencyWindow','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,height=170,width=600') 
	}

function navIt(id){
if (document.getElementById){
eval("document.getElementById(id).style.visibility = 'visible'");
}else{
if (document.layers){
document.layers[id].visibility = 'show';
}else{
if (document.all){
eval("document.all." + id + ".style.visibility = 'visible'");
}
}
}
}
function del(id){
if (document.getElementById){
eval("document.getElementById(id).style.visibility = 'hidden'");
}else{
if (document.layers){
document.layers[id].visibility = 'hide';
}else{
if (document.all){
eval("document.all." + id + ".style.visibility = 'hidden'");
}
}
}
}
