// JavaScript Document


function icq()
{
d=document;
x=d.getElementById("icq_close");
m=d.getElementById("icq-img");
x.style.display="block";
m.style.display="none";
}


function icq_close()
{
d=document;
x=d.getElementById("icq_close");
m=d.getElementById("icq-img");
x.style.display="none";
m.style.display="block";
}


function show_light(color)
{
d=document;
r=d.getElementById("red-light");
y=d.getElementById("yellow-light");
g=d.getElementById("green-light");

if(color=="red")
{
r.style.display="block";
}

else if(color=="yellow")
{h
y.style.display="block";
}

else if(color=="green")
{
g.style.display="block";
}
}

function hide_light(color)
{
d=document;
r=d.getElementById("red-light");
y=d.getElementById("yellow-light");
g=d.getElementById("green-light");

if(color=="red")
{
r.style.display="none";
}

else if(color=="yellow")
{
y.style.display="none";
}

else if(color=="green")
{
g.style.display="none";
}
}

function goto(adres)
{
location.replace(adres);
}


function hilight(x, mouse)
{
if(mouse=="over")
{
x.parentNode.parentNode.style.background="#d9e6ef";
}
else
{
x.parentNode.parentNode.style.background="none";
}
}


function label()
{
	var m;
x=document.getElementsByTagName("label");
for(var i=0;i<=x.length;i++)
{
m=i+1;
if (x[i]) {
x[i].style.display="block";
x[i].innerHTML=m;
}
}
}




function kill_padding()
{

var x;

x=document.getElementById("docs");
x.childNodes[2].style.padding="0";
}