/**
 * Funcions javascripts
 * @author Samuel
 */
function showHideLayer(idLayer) {
	var theLayer = document.getElementById(idLayer);
	if (theLayer.style.display == "none") {
		theLayer.style.display = "block";
	} else {
		theLayer.style.display = "none";
	}
}