<!-- Begin

function field_validation(thisform) {

       	if (thisform.u_name.value == "") {
		alert ("Name must be filled and can not be left blank ...");
		thisform.u_name.focus();
		return false;
	}

		
		if (thisform.e_mail.value == "") {
		alert ("Email must be filled and can not be left blank ...");
		thisform.e_mail.focus();
		return false;
	}
	
	var str=document.form1.e_mail.value
		var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
		if (filter.test(str))
		testresults=true
		else{
		alert("Please input a valid email address!")
		thisform.e_mail.focus();
		return false;
	}	
	
/*		
	if (thisform.comment_on.value == "Other" && thisform.other.value == "") {
		alert ("If you selected 'Other' option then 'Other' field must be filled and can not be left blank ...");
		thisform.other.focus();
		return false;
	}
				
	if (thisform.comment_on.value != "Other" && thisform.other.value != "") {
		alert ("You are already selected 'About Comments On' plz not fill the 'Other' field...");
		thisform.other.focus();
		return false;
	}
*/		
	
			
return true;

}
