function dspSwitch(id)
{
	var d = document.getElementById(id).style;
	d.display = (d.display == "block") ? "none" : "block";
}