function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
	d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

// ---------------------------------------------------

function MM_changeProp(objName,x,theProp,theValue) { //v6.0
  var obj = MM_findObj(objName);
  if (obj && (theProp.indexOf("style.")==-1 || obj.style)){
	if (theValue == true || theValue == false){
	  eval("obj."+theProp+"="+theValue);
	} else {
	  eval("obj."+theProp+"='"+theValue+"'");
	}
  }
}

// ---------------------------------------------------

function showSelectBoxes(){
	var selects = document.getElementsByTagName("select");
	for (i = 0; i != selects.length; i++) {
		selects[i].style.visibility = "visible";
	}
}

// ---------------------------------------------------

function hideSelectBoxes(){
	var selects = document.getElementsByTagName("select");
	for (i = 0; i != selects.length; i++) {
		selects[i].style.visibility = "hidden";
	}
}
	

function showhide(objShow, objHide){
	if (objHide != '') {
		document.getElementById(objHide).style.display = 'none';
	}
	if (objShow != '') {
		document.getElementById(objShow).style.display = 'block';
	}
}

function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3)
  with (document) if (getElementById &&
((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style;
v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}

function verFoto(num_foto) {
	if (num_foto == 10) {
		document.getElementById('t_nova_foto').style.display = 'none';
	}
	var foto_prox = num_foto + 1;
	var div_ver = 't_foto'+num_foto;
	document.getElementById(div_ver).style.display = 'block';
	var div_substituir = '<table width="100%" border="0" cellpadding="0" cellspacing="0" class="texto"><tr><td colspan="2" class="texto"><a href="javascript:verFoto('+foto_prox+');" class="link-assinante"><U>(+) Inserir mais uma foto</U></a></td></tr><tr><td height="5"></td><td></td></tr></table>';
	var obj = document.getElementById('t_nova_foto');
	obj.innerHTML = div_substituir;
}


function url_encode(str) { 
    var hex_chars = "0123456789ABCDEF"; 
    var noEncode = /^([a-zA-Z0-9\_\-\.])$/; 
    var n, strCode, hex1, hex2, strEncode = ""; 

    for(n = 0; n < str.length; n++) { 
        if (noEncode.test(str.charAt(n))) { 
            strEncode += str.charAt(n); 
        } else { 
            strCode = str.charCodeAt(n); 
            hex1 = hex_chars.charAt(Math.floor(strCode / 16)); 
            hex2 = hex_chars.charAt(strCode % 16); 
            strEncode += "%" + (hex1 + hex2); 
        } 
    } 
    return strEncode; 
} 

function url_decode(str) { 
    var n, strCode, strDecode = ""; 

    for (n = 0; n < str.length; n++) { 
        if (str.charAt(n) == "%") { 
            strCode = str.charAt(n + 1) + str.charAt(n + 2); 
            strDecode += String.fromCharCode(parseInt(strCode, 16)); 
            n += 2; 
        } else { 
            strDecode += str.charAt(n); 
        } 
    } 
    return strDecode; 
}  

var http_request = false;
function makeRequest() {
	http_request = false;
	if (window.XMLHttpRequest) { 
		http_request = new XMLHttpRequest();
		if (http_request.overrideMimeType) {
			http_request.overrideMimeType('text/xml');
		}
	} else if (window.ActiveXObject) { 
		try {
			http_request = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				http_request = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {}
		}
	}
	if (!http_request) {
		alert('Giving up :( Cannot create an XMLHTTP instance');
		return false;
	}
	http_request.onreadystatechange = function alertContents() {
		if (http_request.readyState == 4) {
			if (http_request.status == 200) {
				var obj = document.getElementById('t_ajax');
				var novo_conteudo = url_decode(http_request.responseText);
				obj.innerHTML = http_request.responseText;
			}
		}
	}
	http_request.open('GET', 'ajx_busca.php?cidade='+url_encode(document.busca.cidade.value), true);
	http_request.send(null);
	
}

function changeFoto(id_imovel, id_foto, amp, total_fotos) {
	var obj = document.getElementById('changeFoto');
	var novo_conteudo = '';
	if (amp == 'true') {
		for (i = 1; i <= total_fotos; i = i+1) {
			if (i == id_foto) {
				var novo_conteudo = novo_conteudo + '<a href=\"images/imoveis/amp_'+ id_imovel +'_'+ i +'.jpg\" rel=\"lytebox[]\"><img src=\"images/imoveis/foto_'+ id_imovel +'_'+ i +'.jpg\" border=\"0\"></a>';
			} else {
				var novo_conteudo = novo_conteudo + '<a href=\"images/imoveis/amp_'+ id_imovel +'_'+ i +'.jpg\" rel=\"lytebox[]\"></a>';
			}
		}
	} else {
		var novo_conteudo = '<img src=\"images/imoveis/foto_'+ id_imovel +'_'+ id_foto +'.jpg\">';
	}
	obj.innerHTML = novo_conteudo;
	initLytebox();
}

function enviando() {
	missinginfo = "";
	if (document.form_imobiliarias.nome.value == "") {
		missinginfo += "\n     -  Nome";
	}
	if ((document.form_imobiliarias.email.value == "") || 
		(document.form_imobiliarias.email.value.indexOf('@') == -1) || 
		(document.form_imobiliarias.email.value.indexOf('.') == -1)) {
		missinginfo += "\n     -  Email";
	}
	if (document.form_imobiliarias.mensagem.value == "") {
		missinginfo += "\n     -  Mensagem";
	}
	if (missinginfo != "") {
		missinginfo ="_____________________________\n" +
		"Você não preencheu corretamente:\n" +
		missinginfo + "\n_____________________________" +
		"\nPor favor, preencha novamente!";
		alert(missinginfo);
		return false;
	} else {
		document.form_imobiliarias.bt_enviar.disabled = true;
		document.getElementById('carregando').style.display = "block";
		return true;
	}
	
}

function selecionar_todo(){
   for (i=0;i<document.form.elements.length;i++)
      if(document.form.elements[i].type == "checkbox")
         document.form.elements[i].checked=1
} 

function deselecionar_todo(){
   for (i=0;i<document.form.elements.length;i++)
      if(document.form.elements[i].type == "checkbox")
         document.form.elements[i].checked=0
} 

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

function Confirma(){
	var agree = confirm("Deseja excluir este registro?");
	if (agree) {
		return(true);
	} else {
		return(false)
	}
}

function MascaraMoeda(objTextBox, SeparadorMilesimo, SeparadorDecimal, e){
    var sep = 0;
    var key = '';
    var i = j = 0;
    var len = len2 = 0;
    var strCheck = '0123456789';
    var aux = aux2 = '';
    //var whichCode = (window.Event) ? e.which : e.keyCode;
	var whichCode = (window.addEventListener) ? e.which : e.keyCode;
    // 13=enter, 8=backspace as demais retornam 0(zero)
    // whichCode==0 faz com que seja possivel usar todas as teclas como delete, setas, etc    
    if ((objTextBox.value.length >= objTextBox.maxLength) && (whichCode != 13) && (whichCode != 8)) whichCode = 1;
	if ((whichCode == 13) || (whichCode == 0) || (whichCode == 8) || (whichCode == 9))
    	return true;
    key = String.fromCharCode(whichCode); // Valor para o código da Chave
 
 
    if (strCheck.indexOf(key) == -1) 
    	return false; // Chave inválida
    len = objTextBox.value.length;
    for(i = 0; i < len; i++)
        if ((objTextBox.value.charAt(i) != '0') && (objTextBox.value.charAt(i) != SeparadorDecimal)) 
        	break;
    aux = '';
    for(; i < len; i++)
        if (strCheck.indexOf(objTextBox.value.charAt(i))!=-1) 
        	aux += objTextBox.value.charAt(i);
    aux += key;
    len = aux.length;
    if (len == 0) 
    	objTextBox.value = '';
    if (len == 1) 
    	objTextBox.value = '0'+ SeparadorDecimal + '0' + aux;
    if (len == 2) 
    	objTextBox.value = '0'+ SeparadorDecimal + aux;
    if (len > 2) {
        aux2 = '';
        for (j = 0, i = len - 3; i >= 0; i--) {
            if (j == 3) {
                aux2 += SeparadorMilesimo;
                j = 0;
            }
            aux2 += aux.charAt(i);
            j++;
        }
        objTextBox.value = '';
        len2 = aux2.length;
        for (i = len2 - 1; i >= 0; i--)
        	objTextBox.value += aux2.charAt(i);
        objTextBox.value += SeparadorDecimal + aux.substr(len - 2, len);
    }
    return false;
}

function MascaraINCC(objTextBox, SeparadorMilesimo, SeparadorDecimal, e){
    var sep = 0;
    var key = '';
    var i = j = 0;
    var len = len2 = 0;
    var strCheck = '0123456789';
    var aux = aux2 = '';
    //var whichCode = (window.Event) ? e.which : e.keyCode;
	var whichCode = (window.addEventListener) ? e.which : e.keyCode;
    // 13=enter, 8=backspace as demais retornam 0(zero)
    // whichCode==0 faz com que seja possivel usar todas as teclas como delete, setas, etc    
    if ((objTextBox.value.length >= objTextBox.maxLength) && (whichCode != 13) && (whichCode != 8)) whichCode = 1;
	if ((whichCode == 13) || (whichCode == 0) || (whichCode == 8) || (whichCode == 9))
    	return true;
    key = String.fromCharCode(whichCode); // Valor para o código da Chave
 
 
    if (strCheck.indexOf(key) == -1) 
    	return false; // Chave inválida
    len = objTextBox.value.length;
    for(i = 0; i < len; i++)
        if ((objTextBox.value.charAt(i) != '0') && (objTextBox.value.charAt(i) != SeparadorDecimal)) 
        	break;
    aux = '';
    for(; i < len; i++)
        if (strCheck.indexOf(objTextBox.value.charAt(i))!=-1) 
        	aux += objTextBox.value.charAt(i);
    aux += key;
    len = aux.length;
    if (len == 0) 
    	objTextBox.value = '';
    if (len == 1) 
    	objTextBox.value = '0'+ SeparadorDecimal + '000' + aux;
    if (len == 2) 
    	objTextBox.value = '0'+ SeparadorDecimal + '00' + aux;
    if (len == 3) 
    	objTextBox.value = '0'+ SeparadorDecimal + '0' + aux;
    if (len == 4) 
    	objTextBox.value = '0'+ SeparadorDecimal + aux;
    if (len > 4) {
        aux2 = '';
        for (j = 0, i = len - 5; i >= 0; i--) {
            if (j == 3) {
                aux2 += SeparadorMilesimo;
                j = 0;
            }
            aux2 += aux.charAt(i);
            j++;
        }
        objTextBox.value = '';
        len2 = aux2.length;
        for (i = len2 - 1; i >= 0; i--)
        	objTextBox.value += aux2.charAt(i);
        objTextBox.value += SeparadorDecimal + aux.substr(len - 4, len);
    }
    return false;
}

function popup(URL) {
   var width = 360;
   var height = 330;
   var left = 10
   var top = 10
   window.open(URL,'Popup', 'width='+width+', height='+height+', top='+top+', left='+left+', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, fullscreen=no');
}

var re_dt = /^(\d{1,2})\/(\d{1,2})\/(\d{4})$/,
re_tm = /^(\d{1,2})\:(\d{1,2})\:(\d{1,2})$/,
re_cpf = /^([0-9]{3}\.){2}[0-9]{3}-[0-9]{2}$/,
re_cnpj = /^[0-9]{2}\.[0-9]{3}\.[0-9]{3}\/[0-9]{4}\-[0-9]{2}$/,
a_formats = {
    'alpha'   : /^[a-zA-Z\.\-]*$/,
    'alphanum': /^\w+$/,
    'unsigned': /^\d+$/,
    'integer' : /^[\+\-]?\d*$/,
    'real'    : /^[\+\-]?\d*\,?\d*$/,
    'email'   : /^[\w-\.]+\@[\w\.-]+\.[a-z]{2,4}$/,
    'phone'   : /^[\d\.\s\-]+$/,
    'cpfcnpj' : function (s_cpfcnpj) {
        // pega somente os numeros
        var numero = s_cpfcnpj.replace(/\D/g, "");
        var igual = true;
        
        var tipo = 0;
        // check format
        if (re_cpf.test(s_cpfcnpj) || (numero.length == 11 && s_cpfcnpj.length == numero.length))
            tipo = 1;
        else if (re_cnpj.test(s_cpfcnpj) || (numero.length == 14 && s_cpfcnpj.length == numero.length))
            tipo = 2;
        else
            return false;
        
        // verifica se todos os numeros sao iguais
        for (var i = 1; i < numero.length; i++) {
            if (numero.charAt(i-1) != numero.charAt(i)) 
                igual = false;
        }
        if (igual)
            return false;

        function impCalcDig11(numero) {
            var pesos = [2,3,4,5,6,7,8,9,2,3,4,5,6,7,8,9];
            var calc = 0, x='';
            var numero = String(numero).split("");
            var limite = numero.length -1;
            var result = 0;
            var pso = 0;
            for (var i = limite; i >= 0; i--) {
                x += "\npso:" + pesos[pso] + " * " + numero[i] + " = " + (pesos[pso] * parseInt(numero[i]));
                calc += (pesos[pso++] * parseInt(numero[i]));
            }
            result = 11 - ((calc)%11);
            if (result == 11) {result = 0;}
            return result;
        }

        if (tipo == 1){
            var cpf = numero.substring(0,9);
            var digito = numero.substring(9,11);
            var soma, mt, dg = 0;
            var dgc = "";
            for (var j = 1; j <= 2; j++) {
                soma = 0;
                mt = 2;
                for (i = 8 + j; i >= 1; i--) {
                    soma += parseInt(cpf.charAt(i - 1), 10) * mt;
                    mt++;
                }
                dg = 11 - (soma % 11);
                if (dg > 9) 
                    dg = 0;
                cpf += dg;
                dgc += dg;
            }
        } else if (tipo == 2) {
            var cnpj = numero.substring(0,12);
            var digito = numero.substring(12,14);
            var digitoc = 0;
            var dgc = "";
            for (var j = 1; j <= 2; j++) {
                digitoc = impCalcDig11(cnpj);
                if (digitoc == 10) 
                    digitoc = 0;
                dgc  += digitoc;
                cnpj += digitoc;
            }
        }
        // digito inválido
        if (dgc != digito)
            return false;

        return true;
    },    
    // substitua a data por isto aqui 
    'date' : function (s_date) { 
        // check format 
        if (!re_dt.test(s_date)){ 
            return false; 
        } 
        // check allowed ranges 
        if (RegExp.$1 > 31 || RegExp.$2 > 12 || RegExp.$3 < 1900){ 
            return false; 
        } 
        var dt_test = new Date(); 
        if (RegExp.$3 > dt_test.getFullYear() + 10) 
            return false;        
        // check number of day in month 
        var dt_test = new Date(RegExp.$3, Number(RegExp.$2-1), RegExp.$1); 
        if (dt_test.getMonth() != Number(RegExp.$2-1)) 
            return false; 
        return true; 
    }, 
    'time'    : function (s_time) {
        // check format
        if (!re_tm.test(s_time))
            return false;
        // check allowed ranges    
        if (RegExp.$1 > 23 || RegExp.$2 > 59 || RegExp.$3 > 59)
            return false;
        return true;
    }
},


a_messages = [
    'Nenhum nome do formulário passou à rotina do Validator',
    'Nenhum array do campo "%form%" passou à rotina do Validator',
    'O formulário "%form%" não pode ser encontrado no documento',
    'Entrada imcompleta no campo de formulário "%n%". Atributo "l" não encontrado',
    'Não encontrado o campo "%n%" no formulário "%form%"',
    'Não encontrada a label tag (id="%t%")',
    'Não é possível validar. Campo "%m%" não encontrado',
    '"%l%" é um campo obrigatório',
    '"%l%" precisa no mínimo %mn% caracteres ou mais',
    '"%l%" não pode ter mais que %mx% caracteres',
    '"%v%" não é um valor válido para "%l%"',
    '"%l%" deve ser "%ml%"'
]


// validator counstruction routine
function validator(s_form, a_fields, o_cfg) {
    this.f_error = validator_error;
    this.f_alert = o_cfg && o_cfg.alert
        ? function(s_msg) { alert(s_msg); return false }
        : function() { return false };
        
    // check required parameters
    if (!s_form)    
        return this.f_alert(this.f_error(0));
    this.s_form = s_form;
    
    if (!a_fields || typeof(a_fields) != 'object')
        return this.f_alert(this.f_error(1));
    this.a_fields = a_fields;

    this.a_2disable = o_cfg && o_cfg['to_disable'] && typeof(o_cfg['to_disable']) == 'object'
        ? o_cfg['to_disable']
        : [];
        
    this.exec = validator_exec;
}

// validator execution method
function validator_exec() {
    var o_form = document.forms[this.s_form];
    if (!o_form)    
        return this.f_alert(this.f_error(2));
        
    b_dom = document.body && document.body.innerHTML;
    
    // check integrity of the form fields description structure
    for (var n_key in this.a_fields) {
        // check input description entry
        this.a_fields[n_key]['n'] = n_key;
        if (!this.a_fields[n_key]['l'])
            return this.f_alert(this.f_error(3, this.a_fields[n_key]));
        o_input = o_form.elements[n_key];
        if (!o_input)
            return this.f_alert(this.f_error(4, this.a_fields[n_key]));
        this.a_fields[n_key].o_input = o_input;
    }

    // reset labels highlight
    if (b_dom)
        for (var n_key in this.a_fields) 
            if (this.a_fields[n_key]['t']) {
                var s_labeltag = this.a_fields[n_key]['t'], e_labeltag = get_element(s_labeltag);
                if (!e_labeltag)
                    return this.f_alert(this.f_error(5, this.a_fields[n_key]));
                this.a_fields[n_key].o_tag = e_labeltag;
                
                // normal state parameters assigned here
                e_labeltag.className = 'tfvNormal';
            }

    // collect values depending on the type of the input
    for (var n_key in this.a_fields) {
        var s_value = '';
        o_input = this.a_fields[n_key].o_input;
        if (o_input.type == 'checkbox') // checkbox
            s_value = o_input.checked ? o_input.value : '';
        else if (o_input.value) // text, password, hidden
            s_value = o_input.value;
        else if (o_input.options) // select
            s_value = o_input.selectedIndex > -1
                ? o_input.options[o_input.selectedIndex].value
                : null;
        else if (o_input.length > 0) // radiobuton
            for (var n_index = 0; n_index < o_input.length; n_index++)
                if (o_input[n_index].checked) {
                    s_value = o_input[n_index].value;
                    break;
                }
        this.a_fields[n_key]['v'] = s_value.replace(/(^\s+)|(\s+$)/g, '');
    }
    
    // check for errors
    var n_errors_count = 0,
        n_another, o_format_check;
    for (var n_key in this.a_fields) {
        o_format_check = this.a_fields[n_key]['f'] && a_formats[this.a_fields[n_key]['f']]
            ? a_formats[this.a_fields[n_key]['f']]
            : null;

        // reset previous error if any
        this.a_fields[n_key].n_error = null;

        // check reqired fields
        if (this.a_fields[n_key]['r'] && !this.a_fields[n_key]['v']) {
            this.a_fields[n_key].n_error = 1;
            n_errors_count++;
        }
        // check length
        else if (this.a_fields[n_key]['mn'] && this.a_fields[n_key]['v'] != '' && String(this.a_fields[n_key]['v']).length < this.a_fields[n_key]['mn']) {
            this.a_fields[n_key].n_error = 2;
            n_errors_count++;
        }
        else if (this.a_fields[n_key]['mx'] && String(this.a_fields[n_key]['v']).length > this.a_fields[n_key]['mx']) {
            this.a_fields[n_key].n_error = 3;
            n_errors_count++;
        }
        // check format
        else if (this.a_fields[n_key]['v'] && this.a_fields[n_key]['f'] && (
            (typeof(o_format_check) == 'function'
            && !o_format_check(this.a_fields[n_key]['v']))
            || (typeof(o_format_check) != 'function'
            && !o_format_check.test(this.a_fields[n_key]['v'])))
            ) {
            this.a_fields[n_key].n_error = 4;
            n_errors_count++;
        }
        // check match    
        else if (this.a_fields[n_key]['m']) {
            for (var n_key2 in this.a_fields)
                if (n_key2 == this.a_fields[n_key]['m']) {
                    n_another = n_key2;
                    break;
                }
            if (n_another == null)
                return this.f_alert(this.f_error(6, this.a_fields[n_key]));
            if (this.a_fields[n_another]['v'] != this.a_fields[n_key]['v']) {
                this.a_fields[n_key]['ml'] = this.a_fields[n_another]['l'];
                this.a_fields[n_key].n_error = 5;
                n_errors_count++;
            }
        }
        
    }

    // collect error messages and highlight captions for errorneous fields
    var s_alert_message = '',
        e_first_error;

    if (n_errors_count) {
        for (var n_key in this.a_fields) {
            var n_error_type = this.a_fields[n_key].n_error,
                s_message = '';
                
            if (n_error_type)
                s_message = this.f_error(n_error_type + 6, this.a_fields[n_key]);

            if (s_message) {
                if (!e_first_error)
                    e_first_error = o_form.elements[n_key];
                s_alert_message += s_message + "\n";
                // highlighted state parameters assigned here
                if (b_dom && this.a_fields[n_key].o_tag)
                    this.a_fields[n_key].o_tag.className = 'tfvHighlight';
            }
        }
        alert(s_alert_message);
        // set focus to first errorneous field
        if (e_first_error.focus && e_first_error.type != 'hidden'  && !e_first_error.disabled)
            eval("e_first_error.focus()");
        // cancel form submission if errors detected
        return false;
    }
    
    for (n_key in this.a_2disable)
        if (o_form.elements[this.a_2disable[n_key]])
            o_form.elements[this.a_2disable[n_key]].disabled = true;

    return true;
}

function validator_error(n_index) {
    var s_ = a_messages[n_index], n_i = 1, s_key;
    for (; n_i < arguments.length; n_i ++)
        for (s_key in arguments[n_i])
            s_ = s_.replace('%' + s_key + '%', arguments[n_i][s_key]);
    s_ = s_.replace('%form%', this.s_form);
    return s_
}

function get_element (s_id) {
    return (document.all ? document.all[s_id] : (document.getElementById ? document.getElementById(s_id) : null));
} 
