<!--

function fichaprojeto(url) {
	popup("popups/" + url, 'ficha', '', '', 500, 500, 0);
}

function galeria(variavel) {
	popup("galeria/galeria.asp?galeria=" + variavel, 'galeria', '', '', 730, 370, 0);
}

function galeria_ficha(variavel) {
	popup("../galeria/galeria.asp?galeria=" + variavel, 'galeria', '', '', 730, 370, 0);
}

function imoveisavulsos() {
	popup('imoveisavulsos.html', 'imoveis', '', '', 500, 500, 0);
}


// verifica browser
var ns = (document.layers)? true:false
var ie = (document.all)? true:false

// abre popup
function popup(page, nome, posx, posy, width, height, barrascroll) {
 // centraliza popup no meio da página
 var largura = (ie)? window.screen.width : screen.availWidth;
 var altura = (ie)? window.screen.height : screen.availHeight;

 if(typeof(posx)=='number')
  var esquerda = posx;
 else
  var esquerda = Math.floor((largura-width)/2);
 
 if(typeof(posy)=='number')
  var emcima = posy;
 else
  var emcima = Math.floor((altura-height)/2)-20;

 window.open(page,nome,'left='+esquerda+',top='+emcima+',width='+width+',height='+height+',scrollbars='+barrascroll+',toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no');
}

//-->