function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function load()
{
    /* Empty */
}


function Toggle_HowHearAboutUsOther_Field() {
	if (document.getElementById("howHearAboutUs").value == "Other") {
		ContentBlock_Show('HowHearAboutUsOtherTextField');
	}
	else {
		ContentBlock_Hide('HowHearAboutUsOtherTextField');
	}
}


function ContentBlock_Hide(id) {	
	if (document.getElementById) {	// DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'none';
	}
	else {
		if (document.getElementById) { // DOM3 = IE5, NS6
			document.id.display = 'none';
		}
		else { // IE 4
			document.all.id.style.display = 'none';
		}
	}		
}
							
function ContentBlock_Show(id) {	
	if (document.getElementById) {	// DOM3 = IE5, NS6
		document.getElementById(id).style.display = '';
	}
	else {
		if (document.getElementById) { // DOM3 = IE5, NS6
			document.id.display = '';
		}
		else { // IE 4
			document.all.id.style.display = '';
		}
	}		
}	

