//---------------------------------------------//
function objetoAjax(){
	var xmlhttp=false;
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
		try {
		   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (E) {
			xmlhttp = false;
  		}
	}

	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}

function AJAXCrearObjeto_verificar_url(){ 
	var obj; 
	if(window.XMLHttpRequest) { // no es IE o IE7
		obj = new XMLHttpRequest(); 
	} else { // Es IE o no tiene el objeto 
		try { 
			obj = new ActiveXObject("Microsoft.XMLHTTP"); 
		} 
		catch (e) { 
			alert('El navegador utilizado no está soportado'); 
		}
	}
	return obj; 
} 

function VerCiudad(dir, id, ciudad)
{
	e = document.getElementById('tr_ciu');
	if(id!=0)
	{
		e.style.display = '';
		divResultado = document.getElementById('d_ciudad');
		ajax=objetoAjax();
		ajax.open("GET", dir+'scripts/ajax/ajax_ciu.php?id='+id+'&ciudad='+ciudad);
		ajax.onreadystatechange=function() {
			if (ajax.readyState==4) {
				divResultado.innerHTML = ajax.responseText;
			}
		}
		ajax.send(null);

//		var frm=document.formregistroalta;
//		frm.ciudad.value=ciudad;
	}
	else e.style.display = 'none';
}

function VerSubCate(dir, id, subcate)
{
	e = document.getElementById('tr_sc');
	if(id!=0)
	{
		e.style.display = '';
		divResultado1 = document.getElementById('d_sc1');
		ajax1=objetoAjax();
		ajax1.open("GET", dir+'scripts/ajax/ajax_sc1.php?id='+id+'&subcate='+subcate);
		ajax1.onreadystatechange=function() {
			if (ajax1.readyState==4) {
				divResultado1.innerHTML = ajax1.responseText;
			}
		}
		ajax1.send(null);
	}
	else e.style.display = 'none';
}
