function dasabilitarenter() {
var tecla = event.keyCode;
if ((tecla == 13)) { 
return false;
}
return tecla;
}

var now = new Date();
var mName = now.getMonth() + 1;
var dName = now.getDay() + 1;
var dayNr = now.getDate();
var yearNr=now.getYear();
if(dName==1) Day = "domingo";
if(dName==2) Day = "segunda-feira ";
if(dName==3) Day = "ter&ccedil;a-feira";
if(dName==4) Day = "quarta-feira";
if(dName==5) Day = "quinta-feira";
if(dName==6) Day = "sexta-feira";
if(dName==7) Day = "s&aacute;bado";
if(yearNr < 2000) Year = 1900 + yearNr;
else Year = yearNr;
// String to display current date.
var todaysDate =(" " + Day + ", " +  dayNr + "/" + " " +  mName + "/" + " " + Year);

function reloadMenu(){

	if (document.buscahome.tp_consulta.value == "venda"){ 
		window.location="index_2.asp?tp_consulta=venda";
	}
	else if(document.buscahome.tp_consulta.value == "locacao"){
		window.location="index_2.asp?tp_consulta=locacao";
	}
	else{
		window.location="index_2.asp";
	}
  }
function busca_referencia(){

if (document.buscareferencia.codigo.value=="") {
  alert("Favor preencher o campo"); 
	document.getElementById("codigo").focus();
	mudacor('codigo','#cccccc');
  return false
  }
}  
