//<script type="text/javascript" language="JavaScript">
    var day="";
    var month="";
    var curr_weekday="";
    var year="";
    curr_date = new Date();
    curr_day = curr_date.getDay();
    curr_month = curr_date.getMonth();
    curr_weekday= curr_date.getDate();
    weekday= curr_weekday;
    curr_year= curr_date.getYear();
    year = curr_year
    
    if(curr_day == 0)
       day = "Sunday "      
       else if(curr_day == 1)
              day = "Monday "
       else if(curr_day == 2)
               day = "Tuesday "   
       else if(curr_day == 3)
               day = "Wednesday "   
       else if(curr_day == 4)
               day = "Thursday "
       else if(curr_day == 5)
               day = "Friday "
       else if(curr_day == 6)
               day = "Saturday "
    
    if(curr_month == 0) {
       month = "January"}
       else if(curr_month ==1)
               month = "February"
       else if(curr_month ==2)
               month = "March"
       else if(curr_month ==3)
               month = "April"
       else if(curr_month ==4)
               month = "May "
       else if(curr_month ==5)
               month = "June"
       else if(curr_month ==6)
               month = "July"
       else if(curr_month ==7)
               month = "August"
       else if(curr_month ==8)
               month = "September"
       else if(curr_month ==9)
               month = "October"
       else if(curr_month ==10)
               month = "November"
       else if(curr_month ==11)
               month = "December"
    
    if ((navigator.appName == "Microsoft Internet Explorer") && (year < 2000))		
        year="19" + year;
    if (navigator.appName == "Netscape") year=1900 + year;
    if ((navigator.appName == "Opera") && (year < 2000)) year="19" + year;
    
    //document.write("<font class=txt10br><b>" + day + "&nbsp;&nbsp;" + month + " " + curr_weekday + ", " + year + "</b></font>");
    document.write("<font class=txt10>" + "&nbsp;" + month + " " + curr_weekday + ", " + year + "</font>");
	//document.write("<font class=txt10><b>" + month + " " +  curr_weekday + ", " + year + "</b></font>");
    //document.write("<font class=txt9><b>" + "&nbsp;" + day + "<br>" + "&nbsp;&nbsp;" + month + " " + curr_weekday + ",&nbsp;" + year + "</b></font>");
    //</script>
