function openWindow(theURL,winName,w,h) { //v2.0
if(navigator.appName=="Netscape"){
win=window.open(theURL,winName,'scrollbars=yes,width='+w+',height='+h);
}else{
win=window.open(theURL,winName,'scrollbars=yes,width='+w+',height='+h+'');
}
windowX = 10;
windowY = (window.screen.height-h)/2;
win.moveTo(windowX,windowY);
}

function openWindow_g(theURL,winName,w,h) { //v2.0
if(navigator.appName=="Netscape"){
win=window.open(theURL,winName,'scrollbars=no,width='+w+',height='+h);
}else{
win=window.open(theURL,winName,'scrollbars=no,width='+w+',height='+h+'');
}
windowX = 10;
windowY = (window.screen.height-h)/2;
win.moveTo(windowX,windowY);
}
function show_time(){
var Digital=new Date();
var hours=Digital.getHours();
var minutes=Digital.getMinutes();
var seconds=Digital.getSeconds();
if (hours<10)
hours="0"+hours;
if (minutes<=9)
minutes="0"+minutes;
if (seconds<=9)
seconds="0"+seconds;

thetime=hours+":"+minutes+":"+seconds;
d=document.getElementById('clock');
d.innerHTML=thetime;
setTimeout("show_time()",1000)
}

function show_hide(mode,theid){
el=document.getElementById(theid);
if(mode=='show'){
el.style.display='block';
}else{
el.style.display='none';
}
}
