// JavaScript Document
function o(id)
{
	return document.getElementById(id);
}
function limpaCampoPI(o)
{
	if(o.value=="Cód.Imóvel")
	o.value="";
}
function mudarendereco(n)
{
	margin = new Array();
	
	margin[1] = "147px";
	margin[2] = "240px";
	margin[3] = "475px";
	margin[4] = "623px";
	margin[5] = "346px";
	
	o('end_1').style.display = "none";
	o('end_2').style.display = "none";
	o('end_3').style.display = "none";
	o('end_4').style.display = "none";
	o('end_5').style.display = "none";
	
	o('end_'+n).style.display = "inline";
	
	o('seta_rodape').style.width = margin[n];
}
function importa(src)
{
	// Create the Script Object
	var script = document.createElement('script');
	script.src = src;
	script.type = 'text/javascript';
	script.defer = true;
	script.id = 'scriptID'; // This will help us in referencing the object later for removal
	// Insert the created object to the html head element
	var head = document.getElementsByTagName('head').item(0);
	head.appendChild(script);	
}
function pularcampo(wobj,alvo,maxleght){
 if (wobj.value.length==maxleght){
  alvo.focus();
 }
}