function popup(url, w, h){
    var sO = 'menubar=no, toolbar=no,location=no,left=0,top=0,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width='+w+',height='+h;   
    pophelp=window.open(url,'', sO);
        return false;
}

function addDate() {
   monthNames = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
   myDate  = new Date();
   var year = myDate.getYear();
   if (year < 1000) year += 1900;
   document.write("<B>" + monthNames[myDate.getMonth()] + "  " + myDate.getDate() + ", " + year + "</B>");
}