 function formValidation()
            {
            var msg
            msg = ""
            {
            	if(document.miniForm.name.value == "" || document.miniForm.name.value == "Full Name")
                 {
                 	msg = "Please enter name";
                  document.miniForm.name.focus() 
                 }
							
              if((document.miniForm.email.value.indexOf('@')== -1) || (document.miniForm.email.value.indexOf('.')== -1))
				  			{
				  			if (msg == "")
					 				{
					 				msg = "Your email address appears to be invalid, please correct."; 	
									document.miniForm.email.focus()
									}
				  	 		else {
				  	 				 msg = msg + "\nEnter Valid Email address"
				  	 				 }
				  			}
				  		 if(document.miniForm.phone.value == "" || document.miniForm.phone.value == "Phone Number")
                  {
                  if (msg == "") 
                     {
                     	msg = "Please enter Phone Number";
                      document.miniForm.phone.focus()
                     }
                  else  {
                  			msg = msg + "\nEnter Phone Number"
                  			}
                  }  	
               if(document.miniForm.zip.value == "" || document.miniForm.zip.value == "Zip Code")
                  {
                  if (msg == "") 
                     {
                     	msg = "Please enter Zip Code";
                      document.miniForm.zip.focus()
                     }
                  else  {
                  			msg = msg + "\nEnter Zip Code"
                  			}
                  }  	   
               if(!document.miniForm.lawncare.checked && !document.miniForm.termites.checked && !document.miniForm.pestcontrol.checked && !document.miniForm.antservice.checked && !document.miniForm.mosquito.checked && !document.miniForm.commercial.checked)
                  {
                  if (msg == "") 
                     {
                     	msg = "Please check a Service";
                     }
                  else  {
                  			msg = msg + "\nCheck a Service"
                  			}
                  }    
 if (msg != "")
          {
			alert(msg);
			return false;
			}
	   
	   
        }
        }
