
/*****************************************************************
 * Javascript By Kevin Ma  Filename: todaydate.js                *
 * March 13, 2000                                                *
 *****************************************************************/

//window.onerror=null;
var NS = (document.layers) ? 1:0
var IE = (document.all) ? 1:0
var timer = null;
function init() { time(); }
function time () 
{ 
  if (NS){ 
   var now = new Date();
   var yr = now.getYear();
   var mName = now.getMonth() + 1;
   var dayNr = now.getDate();
   var y2k = now.getYear()+1900;
   
if(mName==1) Month="January";
if(mName==2) Month="February";
if(mName==3) Month="March";
if(mName==4) Month="April";
if(mName==5) Month="May";
if(mName==6) Month="June";
if(mName==7) Month="July";
if(mName==8) Month="August";
if(mName==9) Month="September";
if(mName==10) Month="October";
if(mName==11) Month="November";
if(mName==12) Month="December";
   var MonthDayYear =(Month + " " + dayNr + ", " + y2k);
   document.forms[2].elements[1].value = MonthDayYear;
   timer = setTimeout("time();",1000);

 } 
 if (IE) {
 var now = new Date();
   var yr = now.getYear();
   var mName = now.getMonth() + 1;
   var dayNr = now.getDate();
 
if(mName==1) Month="January";
if(mName==2) Month="February";
if(mName==3) Month="March";
if(mName==4) Month="April";
if(mName==5) Month="May";
if(mName==6) Month="June";
if(mName==7) Month="July";
if(mName==8) Month="August";
if(mName==9) Month="September";
if(mName==10) Month="October";
if(mName==11) Month="November";
if(mName==12) Month="December";
var MonthDayYear =(Month + " " + dayNr + ", " + yr);
   document.forms[2].elements[1].value = MonthDayYear;
   timer = setTimeout("time();",1000);
  
 }  
  
}

