<!-- hide from old browsers


function submitalert()
{
	alert("This function is not in operation yet.");
	return false;
}


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";

function CheckForm () {

	//Check for a word to search
	if (document.frmSiteSearch.search.value==""){
		alert("Please enter at least one keyword to search");
		document.frmSiteSearch.search.focus();
		return false;
	}

	return true
}

self.name = "main";
function openWin(width, height, URL, referer) {

	go = window.open("","reccommend","toolbar=no,width=" + width + ",height=" + height + ",directories=no,status=no,location=no,scrollbars=no,resizable=no,menubar=no");
	if(go!=null) {
			if(go.opener == null) {
					go.opener = self;
			}
			go.location.href = URL+".asp?referer="+referer;
				}
	}

// - end hiding -->