<!-- // JavaScript Document by: STephen Steinbach
function validateForm(){
	if(""==document.forms.FrmContact.BrideName.value){
		document.getElementById("RowBN").style.backgroundColor="CC0000";
		document.getElementById("RowBN").style.color="FFFFFF";
		return false;
	}
	if(""==document.forms.FrmContact.GroomName.value){
		document.getElementById("RowGN").style.backgroundColor="CC0000";
		document.getElementById("RowGN").style.color="FFFFFF";
		return false;
	}
	if(document.FrmContact.Iam.selectedIndex==0){
		document.getElementById("RowIam").style.backgroundColor="CC0000";
		document.getElementById("RowIam").style.color="FFFFFF";
		return false;
	}
	if(""==document.forms.FrmContact.Address.value){
		document.getElementById("RowAddress").style.backgroundColor="CC0000";
		document.getElementById("RowAddress").style.color="FFFFFF";
		return false;
	}
	if(""==document.forms.FrmContact.City.value){
		document.getElementById("RowCity").style.backgroundColor="CC0000";
		document.getElementById("RowCity").style.color="FFFFFF";
		return false;
	}
	if(document.FrmContact.WhatState.selectedIndex==0){
		document.getElementById("RowState").style.backgroundColor="CC0000";
		document.getElementById("RowState").style.color="FFFFFF";
		return false;
	}
	if(""==document.forms.FrmContact.ZipCode.value){
		document.getElementById("RowZip").style.backgroundColor="CC0000";
		document.getElementById("RowZip").style.color="FFFFFF";
		return false;
	}
	if(""==document.forms.FrmContact.Phone.value){
		document.getElementById("RowPhone").style.backgroundColor="CC0000";
		document.getElementById("RowPhone").style.color="FFFFFF";
		return false;
	}
	var EmailStr = document.forms.FrmContact.Email.value
	var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	if (!filter.test(EmailStr)) {
		document.getElementById("RowEmail").style.backgroundColor="CC0000";
		document.getElementById("RowEmail").style.color="FFFFFF";
		return false;
		}
//
	myOption = -1;
	for (i=document.FrmContact.Format.length-1; i > -1; i--) {
		if (document.FrmContact.Format[i].checked) {
		myOption = i; i = -1;
		}
	}
	if (myOption == -1) {
	document.getElementById("RowFormat").style.backgroundColor="CC0000";
	document.getElementById("RowFormat").style.color="FFFFFF";
	return false;
	}
//
	if(document.FrmContact.Mo.selectedIndex==0 && document.FrmContact.cbUncertain.checked==0){
		document.getElementById("RowDate").style.backgroundColor="CC0000";
		document.getElementById("RowDate").style.color="FFFFFF";
		return false;
	}
	if(document.FrmContact.Dt.selectedIndex==0 && document.FrmContact.cbUncertain.checked==0){
		document.getElementById("RowDate").style.backgroundColor="CC0000";
		document.getElementById("RowDate").style.color="FFFFFF";
		return false;
	}
	if(document.FrmContact.Yr.selectedIndex==0 && document.FrmContact.cbUncertain.checked==0){
		document.getElementById("RowDate").style.backgroundColor="CC0000";
		document.getElementById("RowDate").style.color="FFFFFF";
		return false;
	}
	if(""==document.forms.FrmContact.Locality.value){
		document.getElementById("RowLocality").style.backgroundColor="CC0000";
		document.getElementById("RowLocality").style.color="FFFFFF";
		return false;
	}
	if(document.FrmContact.RequestItem.selectedIndex==0){
		document.getElementById("RowRequest").style.backgroundColor="CC0000";
		document.getElementById("RowRequest").style.color="FFFFFF";
		return false;
	}
	//if(document.FrmContact.RequestItem.selectedIndex==3){
		//confirm("We will respect your wishes and not call.\nHowever, this option is not recommended because:\n\nOur email might be in your Junkbox and you\'ll think we didn\'t write?\n\nYou might be looking for prices or information that we already provide on our site?\n\nYou might not recognize our email?")
		//return false;
	//}

}
//-->
