function CC_VFF(){	var theForm = document.FormName;	var emailRE = /^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/;	var errMsg = "";	var setfocus = "";	if (theForm['ff_name'].value == ""){		errMsg = "A Contact Name is Required\.";		setfocus = "['ff_name']";	}	if (!emailRE.test(theForm['ff_email'].value)){		errMsg = "A Valid Email Address is Required\.";		setfocus = "['ff_email']";	}	if (!theForm['email'].value == ""){		errMsg = "Blank\.";		setfocus = "['email']";	}	if (errMsg != ""){		alert(errMsg);		eval("theForm" + setfocus + ".focus()");	}	else theForm.submit();}
