function initForm(){
	// initialize radio trigger hide/show (pass id for on, off, and the target)
	radioOn("knowSDRYes", "knowSDRNo", "knowSDRTarget");
	// initialize other hide/shows with target/trigger pairs
	//checkOn("customerCareFields", "customerCare");
	//multiOn("wantToKnowsFields", "wantToKnows");
	// find form for onsubmit		
	var contactForm = document.getElementById("contactForm");
	// and initialize help section
	showWithLinks(contactForm);
}

function evalWorkingWithSDRSelection(radioObj)
{
	if ( (radioObj) && (radioObj.type == "radio") && (radioObj.value == "yes") )
	{
		document.getElementById("knowSDRTarget").style.display = "block";
	}
	else
	{
		document.getElementById("knowSDRTarget").style.display = "none";
	}
}
