function validateFeedback( ) {
	with( document.forms['frmFeedback'] ) {
		if( notEmpty(txtName, "Please type in your Name.") ) {
			if( emailValidator(txtEMail, "Please provide a valid e-Mail Address.") ) {
				if( notEmpty(txtMessage, "Please type in your message or feedback in the Message field.") )
					submit( );
			}
		}		
		return false;
	}
}



function validateSupport( ) {
	with( document.forms['frmSupport'] ) {
		if( notEmpty(txtName, "Please type in your Name") ) {
			if( notEmpty(txtPhone, "Please provide your Phone or Mobile No.") ) {
				if( emailValidator(txtEMail, "Please provide a valid e-Mail Address.") ) {
					if( notEmpty(txtModel, "Please enter your product's Model Number.") ) {
						if( notEmpty(txtSerial, "Please provide your product's Serial Number.") ) {
							if( notEmpty(txtVendor,"Please tell where you bought your product (Vendor Name).") ) {
								if( isNumeric(txtInvoiceOR, "Please provide a valid Invoice or Receipt No.") ) {
									if( notEmpty(txtIssue, "Please type in your product issue or defect in the Issue field.") )
										submit( );
								}
							}
						}
					}
				}
			}
		}
		return false;
	}
}



function validateProductRegistration( ) {
	with( document.forms['frmProductRegistration'] ) {
		if( notEmpty(txtName, "Please type in your Name") ) {
			if( notEmpty(txtPhone, "Please provide your Phone or Mobile No.") ) {
				if( emailValidator(txtEMail, "Please provide a valid e-Mail Address.") ) {
					if( notEmpty(txtAddress, "Please provide your Address mailing.") ) {
						if( notEmpty(txtModel, "Please enter your product's Model Number.") ) {
							if( notEmpty(txtSerial, "Please provide your product's Serial Number.") ) {
								if( notEmpty(txtVendor,"Please tell where you bought your product (Vendor Name).") ) {
									if( isNumeric(txtInvoiceOR, "Please provide a valid Invoice or Receipt No.") )
										submit( );
								}
							}
						}
					}
				}
			}
		}
		return false;
	}
}