	function paginar(intPag,intAlerta)
	{
		document.form.pag.value=intPag;
		document.form.alerta.value=intAlerta;
		document.form.submit();
	}

	var peticion = false;
	var  testPasado = false;
	try {
	  peticion = new XMLHttpRequest();
	  } catch (trymicrosoft) {
	  try {
	  peticion = new ActiveXObject("Msxml2.XMLHTTP");
	  } catch (othermicrosoft) {
	  try {
	  peticion = new ActiveXObject("Microsoft.XMLHTTP");
	  } catch (failed) {
	  peticion = false;
	  } 
	  }
	}
	if (!peticion)
	alert("ERROR AL INICIALIZAR!");

	function cargarCombo (url, comboAnterior, element_id) 
	{ 
	
		var element =  document.getElementById(element_id);
		var valordepende = document.getElementById(comboAnterior)
		var x = valordepende.value
		var fragment_url = url+'&Id='+x;
		element.innerHTML = '<img src="images/loading.gif" width:100px/>'; 
		peticion.open("GET", fragment_url); 
		peticion.onreadystatechange = function() { 
			if (peticion.readyState == 4) {
		element.innerHTML = peticion.responseText;
			} 
		} 
	   peticion.send(null); 
		if (comboAnterior=='cboPais')
		{
			document.getElementById('cboLocalidad').length=1;
			
		}
	} 


	function guardar()
	{
		document.form.guardar.value=1;
		document.form.submit();
	}
	
	function actualizar()
	{
		document.form.submit();
	}	
