/* FUNCAO PARA ESCONDER */
function HideLayer(id){
    document.getElementById(id).style.display = 'none';
}

/* FUNCAO PARA MOSTRAR */
function showLayer(id){
	document.getElementById(id).style.display = 'block';
}
