﻿// JScript File

function showLayer(id)
{
	document.getElementById(id).style.visibility = 'visible';
}

function hideLayer(id)
{
	document.getElementById(id).style.visibility = 'hidden';
	//window.setTimeout("hl('"+id+"')", 1500);
}