
<!--Begin-->
/* Anti-framing check */
if (parent != self)
top.location.href = location.href;
/* Functions */
function currentDate()
{
var dayArray = new Array("Sunday", "Monday", "Tuesday",
"Wednesday", "Thursday", "Friday", "Saturday")
var monthArray = new Array("January", "February", "March", " April ", " May ", " June ",
" July ", "August", "September", "October", "November", "December")
datetoday = new Date();
theDay = datetoday.getDay();
theDay = dayArray[theDay]
theMonth=datetoday.getMonth();
theMonth=monthArray[theMonth]
theDate=datetoday.getDate();
year=datetoday.getFullYear();
datetoday =   theDay+", &nbsp;"+theMonth+" "+theDate+",&nbsp; "+year
document.write(datetoday);
}
function greet()
{
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();
if (thehour > 18) display = "Evening ";
else if (thehour >12) display = "Afternoon ";
else display = "Morning ";
var greeting = ("Good " + display);
document.write(greeting);
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);

}
//-->


