<!--
    var bVer = parseFloat(navigator.appVersion);

//////////  THIS DISPLAYS TODAY'S DATE IF 
//////////  BROWSER IS GREATER THAN 4 VERSION
    if (bVer>=4){
    window.name = "HOMEPAGE"
    var now = new Date()
    var tempDate = now.getMonth()
    var temTime=now.getHours()
       var Month=""
   
   
    if (tempDate == 0) {Month = "January"};
    if (tempDate == 1) {Month = "February"};
    if (tempDate == 2) {Month = "March"};
    if (tempDate == 3) {Month = "April"};
    if (tempDate == 4) {Month = "May"};
    if (tempDate == 5) {Month = "June"};
    if (tempDate == 6) {Month = "July"};
    if (tempDate == 7) {Month = "August"};
    if (tempDate == 8) {Month = "September"};
    if (tempDate == 9) {Month = "October"};
    if (tempDate == 10) {Month = "November"};
    if (tempDate == 11) {Month = "December"};
    document.write("<font  face=Arial  size=1 color=#FFFFFF><b>"+Month+"  "+now.getDate()+"</b></font>")
    };

 //--Returns the current system time as a string in hh:mm am/pm format.
    function nowStr() {
       var now=new Date()
       var hours=now.getHours()
       var minutes=now.getMinutes()
       timeStr=""+((hours > 12) ? hours - 12 : hours)
       timeStr+=((minutes < 10) ? ":0" : ":") + minutes
       timeStr+=(hours >= 12) ? " PM" : " AM"
       return timeStr
    }

    //--Returns the current date in mm/dd/yy format as a string.
    function todayStr() {
       var today=new Date()
       return today.getMonth()+1+"/"+today.getDate()+"/"+today.getYear()
    }
// -->