// JavaScript Document

function validateOnSubmit()
    {
if(document.fm.email.value==""){
	alert("Write your Email");
	document.fm.email.focus();
	return false;
	}
if(document.fm.email.value.indexOf('@',0) < 0) {
    alert("The email address looks invalid.");
	document.fm.email.focus();
	return false;
	}
if(document.fm.subject.value==""){
	alert("Enter Subject");
	document.fm.subject.focus();	
	return false;
	}
if(document.fm.comments.value==""){
	alert("Enter Comments");
	document.fm.comments.focus();	
	return false;
	}
if(document.fm.code.value==""){
	alert("Enter Verification Code");
	document.fm.code.focus();	
	return false;
	}	
	return true;
	}
/*if(document.fm.contact.value ="") {
    alert("Number should be between 1 and 10.");
	document.fm.contact.focus();
    return false;
  }*/


