// JavaScript Document

/****************************************************************/
/* funcoes.js                                                   */ 
/* Data			: 19.07.2010                                    */
/* Atualização	: 26.07.2010                                    */
/****************************************************************/

function buscaTipoImovel(idTipoImovel, selectElement)
{
	if (selectElement.selectedIndex)
	{
		if (selectElement.selectedIndex == '1')
			var tipoNegocio = '2';
		else
			var tipoNegocio = '1';
		window.location = "busca.php?tipoImovel="+idTipoImovel+"&tipoNegocio="+tipoNegocio+"";
	}
}

function formataCamposTelefone()
{
	var txt = document.formContato.telefone.value;
	if (txt.length == 0)
		document.formContato.telefone.value = "(" + txt;
	if (txt.length == 3)
		document.formContato.telefone.value += ") "; 
	if (txt.length == 9)
		document.formContato.telefone.value += ".";
}

function abrePopUpBradesco(url)
{
	window.open(url,'Bradesco','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=740,height=450');   
}