function Validate(form1,N){
        if(form1.txtFullname.value == "")
                {
                      alert("Please Enter the Full Name.");
                      form1.txtFullname.focus();
                      return false;
                    }

          if(form1.txtEmail.value == "")
                {
                     alert("Please Enter the Valid Email.");
                     form1.txtEmail.focus();
                     return false;
                 }

         
        return true;
	
    }  //end of the validate function
