function toggleDisplay(id)
{
    if (document.getElementById) {
        a=document.getElementById(id);
        if (a.style.display == "none") {
            a.style.display = "block";
        }
        else {
			a.style.display = "none";
        }
		return (true);
	}
	return (false);
}

function setDisplay(id, style)
{
    if (document.getElementById) {
        a=document.getElementById(id);
        if (a.style.display != style) {
    		a.style.display = style;
	       	return (true);
        }
	}
	return (false);
}
