function inicia() {
	var req;
	try {
 		req = new ActiveXObject("Microsoft.XMLHTTP");
	}
	catch(e) {
 		try {
  		req = new ActiveXObject("Msxml2.XMLHTTP");
 		}
		catch(ex) {
  		try {
   			req = new XMLHttpRequest();
  		}
			catch(exc) {
   			alert("Esse browser não tem recursos para uso do AJAX!");
   			req = null;
  		}
 		}
	}
	return req;
}
//--------------------------------------------------------------------------------------------//
function carrega_cep() {
	
	f = document.form_contato;
	
	if(f.cep.value == ''){
		alert("Preencha o cep para fazer a pesquisa!");
		f.cep.focus();
	}else{
	
		ajax = inicia();
		if(ajax) {
			ajax.open('post','/paginas/cep.php?',true);
			ajax.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
			var parametros = 'cep='+f.cep.value;
			ajax.onreadystatechange = function() {
				if(ajax.readyState == 4) {
					if(ajax.status == 200) {
						alert(ajax.responseText);
						var valores = ajax.responseText.split("+");
											
						f.cep.value  		= valores[0];
						f.cidade.value  	= valores[1];
						f.estado.value  	= valores[2];
						f.endereco.value  	= valores[3];
						f.bairro.value  	= valores[4];
						//f.numero.focus();
					}
				}
			}
		}
		ajax.send(parametros);
	}
}
//--------------------------------------------------------------------------------------------//
