var remote = null;
function popup_win( loc, wd, hg ) {
    remote = window.open('','TheRemote','width=' + wd + ',height=' + hg + ',resizable=0,scrollbars=1,top=0,left=0');
    if (remote != null) {
            if (remote.opener == null) {
            remote.opener = self;
        }
            remote.location.href = loc;
    } else { self.close(); }
}

function popUp(url) {
sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
self.name = "mainWin";
}

function startclock()
{
var thetime=new Date();

var nhours=thetime.getHours();
var nmins=thetime.getMinutes();
var nsecn=thetime.getSeconds();
var AorP=" ";

if (nhours>=12)
    AorP="P.M.";
else
    AorP="A.M.";

if (nhours>=13)
    nhours-=12;

if (nhours==0)
 nhours=12;

if (nsecn<10)
 nsecn="0"+nsecn;

if (nmins<10)
 nmins="0"+nmins;

//document.clockform.clockspot.value=nhours+": "+nmins+": "+nsecn+" "+AorP;
document.write(nhours+": "+nmins+": "+nsecn+" "+AorP);

setTimeout('startclock()',1000);

} 
