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 sFlg_Shapes = false;
	var errMsg = "";
	var setfocus = "";

	for(var s1=0;s1<theForm['ff_bloodtype'].length;s1++){if(theForm['ff_bloodtype'].options[s1].selected){if(theForm['ff_bloodtype'].options[s1].text==theForm['ff_bloodtype'].options[0].text)sFlg_Shapes=true;}}

	if (sFlg_Shapes){
		errMsg = "Please select a blood type,\nor choose \"Not Sure\"\.";
		setfocus = "['ff_bloodtype']";
	}
	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 (errMsg != ""){
		alert(errMsg);
		eval("theForm" + setfocus + ".focus()");
	}
	else theForm.submit();
}