

if (isJsEnabled()) {
    addLoadEvent(disableOthers);
}

function disableOthers() {
    document.getElementById("state_other").style.display = "none";
    document.getElementById("foundus_referer").style.display = "none";
    document.getElementById("foundus_other").style.display = "none";
}	


function toggle_state_other() {

    if ( document.getElementById("edit-state").value == "Other") {
	document.getElementById("state_other").style.display = "";
	document.getElementById("edit-state_other").focus();
    } else {
	document.getElementById("state_other").style.display = "none";
    }
		    
}

function toggle_foundus_options() {

    if ( document.getElementById("edit-foundus").value == "Other") {
	document.getElementById("foundus_other").style.display = "";
	document.getElementById("edit-foundus_other").focus();
    } else {
	document.getElementById("foundus_other").style.display = "none";
    }
	
	if ( document.getElementById("edit-foundus").value == "Referral") {
	document.getElementById("foundus_referer").style.display = "";
	document.getElementById("edit-foundus_referer").focus();
    } else {
	document.getElementById("foundus_referer").style.display = "none";
    }	    
}

