
var ACTIVElist=false;
// browser detection using DOM detection:

if (document.getElementById)
{
var LoLev=false;
var HiLev=true;
var IE5=(document.all) ? true : false;
var NS6=(!document.all) ? true : false;
}
else
{
var HiLev=false;
var LoLev=true;
var IE4=(document.all) ? true : false;
var NS4=(document.layers) ? true : false;
}

function ShowBlock(EL)
{
if (NS4)
{
ACTIVElist=document.layers[EL];
}
else
{
if (IE4)
{
ACTIVElist=document.all[EL].style;
}
else
{
if (HiLev)
{
ACTIVElist=document.getElementById(EL).style;
}
}
}
ACTIVElist.visibility="visible";
}

