function mOvr(src,clrOver) {
	if (!src.contains(event.fromElement)) {
		src.style.cursor = 'hand';
		src.bgColor = clrOver;
	}
}  
function mOut(src,clrIn) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.bgColor = clrIn;
	}
}
function mClk(src,href) {
	if(event.srcElement.tagName=='TD'){          
		this.location.href= href ;          
	}
}

//Function to open pop up window
function openWin(theURL,winName,features) {

  	window.open(theURL,winName,features);
}


function checkFields(){
		if (document.contactus.First_Name.value == ""){
			alert("Your First Name is required");
			return false;
	}	
		if (document.contactus.Last_Name.value == ""){
			alert("Your Last Name is required");
			return false;
	}	
		if (document.contactus.Email_Address.value == "" || (document.contactus.Email_Address.value.indexOf("@",0) == -1||document.contactus.Email_Address.value.indexOf(".",0) == -1)) { 
			alert("Please enter a valid E-mail address");
			return false;
	}
		if (document.contactus.comments.value == ""){
			alert("Your Comments are required");
			return false;
	}	
}