// funcao para ocultar camadas
function hideDiv(layer_ref) {

	// IE 4 ou 5 (ou 6 beta) 
	if (document.all) {
		eval( "document.all." + layer_ref + ".style.display = 'none'"); 
	} 
	
	// NETSCAPE 4 ou menor
	if (document.layers) {
		document.layers[layer_ref].display = 'none'; 
	}

	// DIVERSOS
	if (document.getElementById &&!document.all) { 
		hza = document.getElementById(layer_ref); 
		state = hza.style.display;
		hza.style.display = 'none'; 
	}

}