/*
	Name:		contact_us.cfm
	Modified:	15/01/2007 By [DPI-PRG]
	Function:	Display the contact form
	Copyright:	dpivision.com Ltd
*/

function submitContact(frm){
	if(isNull(frm.sName.value)){
		alert("Please enter the Name");
		frm.sName.focus();
		return false;
	}
	
	if(!checkEmail(frm.sEmail.value)){
		alert("Please enter valid Email");
		frm.sEmail.focus();
		return false;
	}
/*
	if(frm.sCountry.value <= 0){
		alert("Please select the Country");
		frm.sCountry.focus();
		return false;
	}
*/
	return true;
}