function toggleshowhide(whichLayer)
{
if (document.getElementById)
{
// this is the way the standards work
var showhide = document.getElementById(whichLayer).style;
showhide.display = showhide.display? "":"block";
}
else if (document.all)
{
// this is the way old msie versions work
var showhide = document.all[whichLayer].style;
showhide.display = showhide.display? "":"block";
}
else if (document.layers)
{
// this is the way nn4 works
var showhide = document.layers[whichLayer].style;
showhide.display = showhide.display? "":"block";
}
}
