function showLayer(id)
{
	document.getElementById(id).style.visibility = "visible"; 
} 

function hideLayer(id)
{
	document.getElementById(id).style.visibility = "hidden"; 
} 

