<!--
function toggleDisplay(id,v) { 
	// used with <a href="javascript:toggleDisplay('id');">
	// or with <a href="javascript:toggleDisplay('id','block');">
	//
	// var v = (v == null) ? "toggle" : v; 
	// v = typeof(v) != 'undefined' ? v : "toggle"; 
	if (typeof v == 'undefined') { v = "toggle"; } 
	target = document.getElementById(id);
	if (v == "none") { target.style.display = "none"; }
	else if (v == "block") { target.style.display = "block"; }
	else if (v == "inline") { target.style.display = "inline"; }
	else {
		if (target.style.display == "none") { target.style.display = "block"; } 
		else if (target.style.display == "block") { target.style.display = "none"; } 
	}
}

// -->

