// JavaScript Document

// Contact Form Grey Out
function greyOut() {
	var cType = document.contactForm.contactType.value;
	var rodOrVick = document.contactForm.wowOrNot.value;
	if(cType == "bride" || cType == "groom" || cType == "other") {
		document.contactForm.business.disabled = true;
		document.contactForm.webAddress.disabled = true;
		document.contactForm.boothSpace.disabled = true;
		document.contactForm.boothSpace.checked = false;
		document.contactForm.interest.disabled = true;			
		document.contactForm.interest[0].selected = true;
		document.contactForm.wowOrNot.disabled = true;		
		document.contactForm.wowOrNot[0].selected = true;
	}
	else {
		document.contactForm.wowOrNot.disabled = false;
		document.contactForm.business.disabled = false;
		document.contactForm.webAddress.disabled = false;
		document.contactForm.interest.disabled = false;
		document.contactForm.boothSpace.disabled = false;
		document.contactForm.boothSpace.checked = false;
	}
}

// Pre-Register Form
function fadeOut() {
	var signer = document.registrationForm.signUp.value;
	if(signer == "Yes") {
		document.registrationForm.newsletter[0].disabled = false;
		document.registrationForm.newsletter[1].disabled = false;
		document.registrationForm.newsletter[0].checked = true;
		document.registrationForm.password1.disabled = false;
		document.registrationForm.password2.disabled = false;
	}
	else {
		document.registrationForm.newsletter[0].disabled = true;
		document.registrationForm.newsletter[1].disabled = true;
		document.registrationForm.password1.disabled = true;
		document.registrationForm.password2.disabled = true;
	}
}
