Hi all !
Can any web gurus out there tell me the netscape equivalent of these IE javascript functions to hide & show an element please?

Code:
function ShowMenuDiv(divID)
{
	document.all.divMenu1.style.display = "";
}

function HideMenuDiv(divID)
{
	document.all.divMenu1.style.display = "none";
}