/*
 * Javascript function for the LaManna Direct website.
 *
 * Placed here to reduce clutter in the header file.
 */
 
function prompterChange(value) {
	if (document.getElementById('prompter').value == "Other (specify below)") {
		showdiv();
		
	} else {
		hidediv();
	}
}
 
function hidediv() { 
	if (document.getElementById) { // DOM3 = IE5, NS6 
		document.getElementById('prompter_other_div').style.display = 'none';
	} 
}

function showdiv() { 
	if (document.getElementById) { // DOM3 = IE5, NS6 
		document.getElementById('prompter_other_div').style.display = 'block';
	} 
} 
