/***********************************************************/
/* Funções genéricas que serão mantidas no ajaxFunction.js */
/***********************************************************/

function isValidKey(e){
	l = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzÁÉÍÓÚÀÈÌÒÙÄËÏÖÜÂÊÎÔÛÃÕáéíóúàèìòùäëïöüâêîôûãõçÇªº|_<>()={[}]?:+-.,;/\\0123456789 ";
    var t = e.keyCode;
	if(l.indexOf(String.fromCharCode(t)) == -1)
		return false;		
	else
		return true;
}

function hideElementById(idElement){
	var e = document.getElementById(idElement)
	if (e) e.style.display = 'none';
}

function showElementById(idElement){
	var e = document.getElementById(idElement)
	if (e) e.style.display = 'block';
}

/***********************************************/
/* Seleciona Rua, Bairro, Cidade               */
/***********************************************/
function seleciona(nome, codigo, obj){
	document.getElementById("nm"+obj).value = nome;
	document.getElementById("cd"+obj).value = codigo;
	document.getElementById("lista"+obj).innerHTML = "";
	document.getElementById("containerLista"+obj).style.display = "none";
}

function showWait(top){
	try {
		var d = document.getElementById('divWait')
		if (top) d.style.top = top;
		d.style.display = 'block';
	} catch(e){}
}
function hideWait(){
	try{document.getElementById('divWait').style.display = 'none';}
	catch(e){}
}
