function searchValidate() {
	if (document.searchForm.search.value == "") {
		alert("The search box is empty!");
		return false;
	}
	else {
		searchForm.submit();
	}
}

var days = new Array();

days[0] = "Sunday";

days[1] = "Monday";

days[2] = "Tuesday";

days[3] = "Wednesday";

days[4] = "Thursday";

days[5] = "Friday";

days[6] = "Saturday";



var months = new Array();

months[0] = "January";

months[1] = "February";

months[2] = "March";

months[3] = "April";

months[4] = "May";

months[5] = "June";

months[6] = "July";

months[7] = "August";

months[8] = "September";

months[9] = "October";

months[10] = "November";

months[11] = "December";


var now = new Date();


var digital = new Date();

var hours = digital.getHours();

var minutes = digital.getMinutes();

var amOrPm = "am";

if (hours > 11) amOrPm = "pm";

if (hours > 12) hours = hours - 12;

if (hours == 0) hours = 12;

if (minutes <= 9) minutes = "0" + minutes;


dispTime = hours + ":" + minutes + " " + amOrPm;


document.write("<b><FONT FACE='Verdana, Arial, Helvetica, sans-serif' COLOR='ffffff' SIZE='1'>" + days[now.getDay()] + "</b>" + ", " + "<b>" +
months[now.getMonth()] + "</b>"  + " " + "<b>" + now.getDate() +
"</b>");
//document.write(",&nbsp;");
//document.write("<b>" + dispTime);
//document.write("&nbsp;EST");
