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'");
}
}
}
}

function cha (id, color){
if(color=="over")
color="#FFE78F";
else if(color=="out")
color="#FEBE00";

if (document.layers)
document[id].bgColor = color == 'transparent' ? null : color;
else if (document.all)
document.all[id].style.backgroundColor = color;
else if (document.getElementById)
document.getElementById(id).style.backgroundColor = color;
}

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}

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')
}
