
	function subForm(){
		if (isBlank(trim(document.userForm.fname.value))) {
		    alert("Please enter the Name");
		    return false;
		  }
		  if (isBlank(trim(document.userForm.name.value))) {
		    alert("Please enter the Name");
		    return false;
		  }

		 if (isBlank(trim(document.userForm.telno.value))) {
		    alert("Please enter the Telephone");
		    return false;
		  }
		  
		
		if (isBlank(trim(document.userForm.email.value))) {
		    alert("Please enter the email");
		    return false;
		  }
		  if (!emailCheck(trim(document.userForm.email.value))) {
   			// alert("Please check your email address");
   			 return false;
  		  }
if (isBlank(trim(document.userForm.area.value))) {
		    alert("Please enter the Area");
		    return false;
		  }
if (isBlank(trim(document.userForm.street.value))) {
		    alert("Please enter the Street");
		    return false;
		  }
if (isBlank(trim(document.userForm.block.value))) {
		    alert("Please enter the Block");
		    return false;
		  }
if (isBlank(trim(document.userForm.noitems.value))) {
		    alert("Please enter the No Of Items");
		    return false;
		  }
if (document.userForm.make.selectedIndex == 0) {
		    alert("Please select the Product");
		    return false;
		  }
if (document.userForm.type.selectedIndex == 0) {
		    alert("Please select the Item");
		    return false;
		  }			  			  


		
		document.userForm.submit();
		
		}



