function validateForm( )
{
	var objFV = new FormValidator("frmRcmFrd");
	
	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("txtStrID", "B", "Please Enter your Store It ID."))
		return false;		

	if (!objFV.validate("txtName1", "B", "Please Enter At Least One Friend's Email Address."))
		return false;

	if (!objFV.validate("txtEmail1", "B,E", "Please Enter Friend's Email Address."))
		return false;
		
	if (!objFV.validate("txtMessage", "B", "Please Enter Message for Your Friends."))
		return false;

	return true;
}