<!-- hide script from old browsers

function AW_BustFrames() {
   if (self.parent.frames.length!=0) {
       self.parent.location.replace(document.location.href);
   }
}

function temp() {
}

function getGreeting() {
    var monthArray = new Array("January","February","March","April","May","June","July","August","September","October","November","December");

    var oDate = new Date();

    var iMonth = oDate.getMonth();
    var iYear = oDate.getFullYear();
    var iDay = oDate.getDate();

    sDisplayDate = monthArray[iMonth] + " " + iDay + ", " + iYear;

    var iHour = oDate.getHours();
    if (iHour < 12) {
        sDayPart = "morning";
    } else if (iHour < 18) {
        sDayPart = "afternoon";
    } else {
        sDayPart = "evening";
    }

    document.write(" - " + sDisplayDate + "<br />Good " + sDayPart + "!");
}

// end script hiding -->
