// Funcoes para mostrar ou ocultar objetos
function mostra(objeto) {
	if(document.all) { // IE4+
		elemento = 'document.all[\'' + objeto + '\']';
	} else { // NS6+
		elemento = 'document.getElementById(\'' + objeto + '\')';
	}
	if(elemento) eval(elemento).style.display = 'block';
}

function esconde(objeto) {
	if(document.all) { // IE4+
		elemento = 'document.all[\'' + objeto + '\']';
	} else { // NS6+
		elemento = 'document.getElementById(\'' + objeto + '\')';
	}
	if(elemento) eval(elemento).style.display = 'none';
}

function mostraEsconde(objeto) {
	if(document.all) { // IE4+
		elemento = 'document.all[\'' + objeto + '\']';
	} else { // NS6+
		elemento = 'document.getElementById(\'' + objeto + '\')';
	}
	if (eval(elemento).style.display == 'block') {
		eval(elemento).style.display = 'none';
	} else {
		eval(elemento).style.display = 'block';
	}
}

function abririmagem(imagem) {
	jan=window.open('pop.htm','Janela','width=750,height=550,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0');
	jan.document.write ('<html>\n<link href=\"../estilo.css\" rel=\"stylesheet\" type=\"text/css\">\n<head>\n<title>CERTA Construtora e Incorporadora</title>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n</head>\n<body style=\"background-color:#FFFFFF\" bottommargin=\"0\" topmargin=\"0\" marginheight=\"0\" leftmargin=\"0\" marginwidth=\"0\" onLoad=\"window.focus();resdetect()\">\n<table height=\"100%\" width=\"100%\" border=\"0\">\n<tr align=\"center\">\n<td valign=\"middle\">');
	jan.document.write ('<br><img src=\"../imagens/'+imagem+'\" name=pop class=\"fotocinza\">');
	jan.document.write ('\n</td>\n</tr>\n<tr>\n<td align=\"center\"><a href=\"javascript:window.close();\">Fechar</a></td>\n</tr>\n</table>\n</body>\n<SCRIPT LANGUAGE=\"JavaScript\">\nfunction resdetect(){if((screen.Width <= (document.images.pop.width)) && (screen.availHeight <= (document.images.pop.height))){window.resizeTo(screen.Width, screen.availHeight)}else{window.resizeTo(document.images.pop.width+50,document.images.pop.height+90)}}<');
	jan.document.write ('/script></html>');
	jan.document.close();
}

function abririmagemraiz(imagem) {
	jan=window.open('pop.htm','Janela','width=750,height=550,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0');
	jan.document.write ('<html>\n<link href=\"estilo.css\" rel=\"stylesheet\" type=\"text/css\">\n<head>\n<title>CERTA Construtora e Incorporadora</title>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n</head>\n<body style=\"background-color:#FFFFFF\" bottommargin=\"0\" topmargin=\"0\" marginheight=\"0\" leftmargin=\"0\" marginwidth=\"0\" onLoad=\"window.focus();resdetect()\">\n<table height=\"100%\" width=\"100%\" border=\"0\">\n<tr align=\"center\">\n<td valign=\"middle\">');
	jan.document.write ('<br><img src=\"../imagens/'+imagem+'\" name=pop class=\"fotocinza\">');
	jan.document.write ('\n</td>\n</tr>\n<tr>\n<td align=\"center\"><a href=\"javascript:window.close();\">Fechar</a></td>\n</tr>\n</table>\n</body>\n<SCRIPT LANGUAGE=\"JavaScript\">\nfunction resdetect(){if((screen.Width <= (document.images.pop.width)) && (screen.availHeight <= (document.images.pop.height))){window.resizeTo(screen.Width, screen.availHeight)}else{window.resizeTo(document.images.pop.width+50,document.images.pop.height+90)}}<');
	jan.document.write ('/script></html>');
	jan.document.close();
}
// Mostra Esconde MENU (n&atilde;o utilizado no momento)
function mostraMenu(objeto) {
	if(document.all) { // IE4+
		elemento = 'document.all[\'' + objeto + '\']';
	} else { // NS6+
		elemento = 'document.getElementById(\'' + objeto + '\')';
	}
	if(elemento) eval(elemento).style.visibility = 'visible';
}


function escondeMenu(objeto) {
	if(document.all) { // IE4+
		elemento = 'document.all[\'' + objeto + '\']';
	} else { // NS6+
		elemento = 'document.getElementById(\'' + objeto + '\')';
	}
	if(elemento) eval(elemento).style.visibility = 'hidden';
}

