<!--
function showel(elid)
{
if (document.getElementById(elid)) document.getElementById(elid).style.visibility='visible';
else
if (document.all(elid)) document.all(elid).style.visibility='visible';
return true;
}

function hideel(elid)
{
if (document.getElementById(elid)) document.getElementById(elid).style.visibility='hidden';
else
if (document.all(elid)) document.all(elid).style.visibility='hidden';
return true;
}

function chbg(elid, bgcol)
{//работает под javascript1.2 (IE5+, NN6-?)
if (document.getElementById(elid)) document.getElementById(elid).style.backgroundColor = bgcol;
else
if (document.all(elid)) document.all(elid).style.backgroundColor = bgcol;
return true;
}

function chcol(elid, col)
{//работает под javascript1.2 (IE5+, NN6-?)
if (document.getElementById(elid)) {document.getElementById(elid).style.color = col;
}
else
if (document.all(elid)) document.all(elid).style.color = col;
return true;
}
// -->
