<!--
dayName = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
monName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
now = new Date


function popUp(filename,width,height) {
	popup=window.open(filename,"popup","height="+height+",width="+width+",resizable=yes,status=no,toolbar=no,directories=no,menubar=no,scrollbars=yes,location=no");
}

function popUpNoScroll(filename,width,height) {
	popup2=window.open(filename,"popup2","height="+height+",width="+width+",resizable=yes,status=no,toolbar=no,directories=no,menubar=no,scrollbars=no,location=no");
}

function verify() {
var themessage = "You are required to complete the following fields: ";
if (document.form.yourname.value=="") {
themessage = themessage + " - Name";
}
if (document.form.email.value=="") {
themessage = themessage + " -  E-mail";
}
if (document.form.phone.value=="") {
themessage = themessage + " -  Phone";
}
//alert if fields are empty and cancel form submit
if (themessage == "You are required to complete the following fields: ") {
document.form.submit();
}
else {
alert(themessage);
return false;
   }
}

//HIDE MENU LINKS

function hidestatus(){
window.status=''
return true
}


if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
//-->
