// JavaScript Document
function validateForm(theForm)
	{
		if (!validEmail(theForm.txtFriendEmail,"Your Friend's Email",true))
			return false;
			
		if (!validRequired(theForm.txtYourName,"Your Full Name"))
			return false;
			
		if (!validEmail(theForm.txtYourEmail,"Your Email Address",true))
			return false;
			
	  return true;
	}