// JavaScript Document
	function openDica(){
		
  		var width="560", height="400";
  		var left =  (screen.width/2) -  width/2;
  		var  top = (screen.height/2) - height/2;
		
		var styleStr = 'scrollbars,resizable,copyhistory,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  		var msgWindow = window.open("http://www.divulgaimoveis.com.br/funcs/util/imovelDica/imovel.dica.php?cod1=2&cod2=10052","msgWindow", styleStr);  
		
	}
	
	function openImg( NomeSite, Nomeimg ){
		
  		var width="300", height="300";
  		var left =  (screen.width/2) -  width/2;
  		var  top = (screen.height/2) - height/2;
		
		var styleStr = 'scrollbars,resizable,copyhistory,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  		var msgWindow = window.open("","msgWindow", styleStr);  
		
		var texto = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>{NomeSite}</title></head><body ><div align="center"><img src="http://www.marlonimoveis.com.br/img/praias/{Nomeimg}" width="250" height="250" border="0" /></div></body></html>';
		texto = texto.replace( '{NomeSite}', NomeSite);
		texto = texto.replace( '{Nomeimg}', Nomeimg);
		
		msgWindow.document.write(texto);
	}