function gate()
{

scroll(0,0);

document.all.gate.style.visibility="visible";

}


function hide()
{

document.all.gate.style.visibility="hidden";

}


function check(box, row, color)
{

if(box.checked)
{

row.bgColor='#FDC51B';

}
else
row.bgColor=color;

}