st = setTimeout("",0);

function showLayer(inLayer)
{
	inLayer.style.visibility = 'visible';
}

function hideLayer(inLayer)
{
	inLayer.style.visibility = 'hidden';
}

function placeLayer(inLayer,x,y)
{
	inLayer.style.left = x;
	inLayer.style.top = y;
}