/*function togglediv(divId) {
var toggleVis = document.getElementById(divId);
if(toggleVis.style.display == 'block') toggleVis.style.display = 'none';
else toggleVis.style.display = 'block';
//var myImage = document.getElementById(divId + 'head');
//if (myImage.style.backgroundImage == 'url(images/minus.gif)') 
//myImage.style.backgroundImage = 'url(images/plus.gif)'; 
//else myImage.style.backgroundImage = 'url(images/minus.gif)'; 
return;
}

function doubletoggle(divone,divtwo) {
togglediv(divone);
togglediv(divtwo);
return;
}

function readmore(divMore) {
togglediv(divMore);
document.getElementById('readmore').style.display = 'none';
}*/

function showdiv(divId) {
	var toggleVis = document.getElementById(divId);
	toggleVis.style.display = 'block';
	return;
}
function hidediv(divId) {
	var toggleVis = document.getElementById(divId);
	if(toggleVis.style.display == 'block') toggleVis.style.display = 'none';
	return;
}

function OnChange(dropdown)
{
    var myindex  = dropdown.selectedIndex
    var SelValue = dropdown.options[myindex].value
	var name = dropdown.name
	
		if(name == "hear"){
			if(SelValue == "Other"){
				showdiv("otherheard");
			} else {
				hidediv("otherheard");
			}
		}
		if(name == "interested"){
			if(SelValue == "Other"){
				showdiv("otherinterest");
			} else {
				hidediv("otherinterest");
			}
		}
	
    return true;
}

