function submit_me(frm)
{
 with (frm)
	{
      /*if(!checkValidNull(vUsername,"Please enter your UserName"))
			return false;
			
		if(!checkValidNull(vPassword,"Please enter your password"))
			return false;	
		if(vPassword.value.length < 5)
		{
			alert("Your password must contain a minimum of 5 characters");
			vPassword.focus();
			return false;
		}
		if(!checkValidNull(vPassword1,"Please confirm your password"))
			return false;
		if(vPassword.value != vPassword1.value)
		{
			alert("Your password and confirm password do not match. Please try again");				
			vPassword.focus();
			return false;
		}*/
		if(!checkValidNull(vFirstName,"Please enter your First Name"))
			return false;
		if(!checkValidNull(vLastName,"Please enter your Last Name"))
			return false;
		if(!checkValidNull(vEmail,"Please enter your Email"))
			return false;
		if(isValidEmail(vEmail.value))	
		{
			alert(isValidEmail(vEmail.value));
			vEmail.focus();
			return false;
		}	
		if(!checkValidNull(vCompanyName,"Please enter your company name"))
			return false;
		if(!checkValidNull(vPhone,"Please enter your phone no"))
			return false;
		/*if(!checkValidNull(birth_month,"Please enter your birth month"))
			return false;
		if(!checkValidNull(birth_date,"Please enter your birth date"))
			return false;
		if(!checkValidNull(birth_year,"Please enter your birth Year"))
			return false;

			// Date Validation
			//------------------
			var startdate=birth_year.value+"-"+birth_month.value+"-"+birth_date.value
			var sdate=startdate.split('-');
		    var syr=sdate[0];
	        var smon=sdate[1];
            var sday=sdate[2];
			
		  var today=new Date();
	      // code for Mozilla, etc.
			if (window.XMLHttpRequest)
  			{
				var cur_yr1=today.getFullYear();
			}
			// code for IE.
			else if(window.ActiveXObject)
			{
				var cur_yr1=today.getYear();	
			}
		  var cur_mon=today.getMonth()+1;
	      var cur_date=today.getDate();
		 if(cur_yr1<syr)
      	{
        	alert("Birth Date year should be less than or equal to current year");
			birth_year.focus();
	        return false;
    	}
     	 if(syr==cur_yr1 && parseInt(cur_mon)<smon)
      	{
        	alert("Birth Date month should be less than or equal to current month");
			birth_month.focus();
	        return false;
        }
      	if(syr==cur_yr1 && smon==cur_mon && cur_date<sday)
      	{
        	alert("Birth day should be less than or equal to current day");
			birth_date.focus();
	        return false;
    	}
		if(!checkValidNull(vAddress,"Please enter your Address"))
			return false;
		if(!checkValidNull(vCity,"Please enter your City"))
			return false;
		if(vState.value == '')
		{
			alert("Please select your state");
			vState.focus();
			return false;
		}
		if(!checkValidNull(vZip,"Please Enter Postal Code"))
			return false;
		
		if(frm.checkbox)
		{
			if(frm.checkbox.checked == false)
			{
				alert("Please Accept the agrement which is written above");
				return false;	
			}
		}*/
	}
}
