// JavaScript Document
function submit1_onclick() {
	var emailPat = /^[A-Za-z0-9_\-]+([.][A-Za-z0-9_\-]+)*[@][A-Za-z0-9_\-]+([.][A-Za-z0-9_\-]+)+$/
	var matchArray = gk_frm1.txt_Email.value.match(emailPat);
	if (document.gk_frm1.txt_Fname.value == "" ){
		window.alert("Please provide us with your first name..!")
		document.gk_frm1.txt_Fname.focus();
	return false
	}
	/*if (document.gk_frm1.txt_Lname.value == "" ){
		window.alert("Please provide us with your last name..!")
		document.gk_frm1.txt_Lname.focus();
	return false
	}*/
	if (matchArray == null)
	{
		alert ("Please enter your valid email address.");
		document.gk_frm1.txt_Email.focus();
		return false;
	}
	/*if (document.gk_frm1.txtarea_Comment.value == "" ){
		window.alert("Please provide us with your comment..!")
		document.gk_frm1.txtarea_Comment.focus();
		return false;
	}*/
}

