function ST(text, id)
{
	document.getElementById(id).bgColor = "#FFFFFF";
    document.all.layer.innerHTML = "<table border=0 class=infoborder width=100%><tr><td>&nbsp;&nbsp;" + text + "</tr></td></table>";
    
    document.getElementById("layer").style.visibility = "visible";
}

function DT(id)
{
	document.getElementById(id).bgColor = "#ffefcd";
    document.getElementById("layer").style.visibility  = "hidden";

}

function SIT(text)
{
    document.all.layer.innerHTML = "<table border=0 class=infoborder width=100%><tr><td>&nbsp;&nbsp;" + text + "</tr></td></table>";
    document.getElementById("layer").style.visibility = "visible";
}
function DIT()
{
    document.getElementById("layer").style.visibility = "hidden";
}

function ablegen()
{
          ShowLayer("false");
          ShowLayer("true");
          
document.getElementById("layer").style.visibility = "hidden";
document.getElementById("layer").style.visibility = "show";
}



function UpdateLayerPosition()
{
   document.getElementById("layer").style.top  = window.event.clientY + document.body.scrollTop + 12;
   document.getElementById("layer").style.left  = window.event.clientX;

}


