
/*********************************************************************************************\
***********************************************************************************************
**                                                                                           **
**  SW3 Solutions                                                                            **
**  Version 2.0                                                                              **
**                                                                                           **
**  http://www.sw3solutions.com                                                              **
**                                                                                           **
**  Copyright 2005-09 (C) SW3 Solutions                                                      **
**                                                                                           **
**  ***************************************************************************************  **
**                                                                                           **
**  Developer Information:                                                                   **
**                                                                                           **
**      Name  :  Muhammad Tahir Shahzad                                                      **
**      Email :  mtahirshahzad@hotmail.com                                                   **
**      Phone :  +92 333 456 0482                                                            **
**      URL   :  http://mts.sw3solutions.com                                                 **
**                                                                                           **
**  ***************************************************************************************  **
**                                                                                           **
**                                                                                           **
**                                                                                           **
**                                                                                           **
***********************************************************************************************
\*********************************************************************************************/

function validateForm( )
{
	var objFV = new FormValidator("frmContact");

	if (!objFV.validate("txtName", "B", "Please enter your Name."))
		return false;		
		
	if (!objFV.validate("txtEmail", "B,E", "Please enter your valid Email Address."))
		return false;
		
	if (!objFV.validate("txtSubject", "B", "Please enter the Message Subject."))
		return false;		
		
	if (!objFV.validate("txtMessage", "B", "Please enter your Message."))
		return false;
		
	if (!objFV.validate("txtSpamCode", "B,L(5)", "Please enter the valid Spam Protection Code as shown."))
		return false;

	return true;
}
