function hiddenLayer( elm ) {
	document.getElementById(elm).style.visibility = "hidden";
}

function showLayer(elm) {
	document.getElementById(elm).style.visibility = "visible";
}