/*------->listado actividades (agenda<---------*/

function enviar_categoria(valor)
{
	var myConn = new XHConn();
	myConn.connect('./citas_actividades_crono/categoria.php','POST','valor='+valor,leerDatos);
}

function leerDatos(oXML)
{
	var select=oXML.responseText.split('|');
	document.getElementById('html').innerHTML=select['0'];
	document.getElementById('pagina').value=select['1'];
	document.getElementById('categorialoc').value=select['2'];

}
/**********/
/*------>listado multimedia todos<--------*/
function enviar_cat(valor)
{
	
	//if(valor!='0'){
		var myConn = new XHConn();
		myConn.connect('./documentacion_multimedia/categoria.php','POST','valor='+valor,leerDatos2);
	//}
	
}

function leerDatos2(oXML)
{
	var select=oXML.responseText.split('|');
	document.getElementById('html').innerHTML=select['0'];
	document.getElementById('pagina').value=select['1'];
	document.getElementById('categoriaml').value=select['2'];
}

/********************/

/*------->listado multimedia recursos<---------*/

function enviar_cat2(valor)
{
	
	//if(valor!='0'){
		var myConn = new XHConn();
		myConn.connect('./prensa_multimedia/categoria.php','POST','valor='+valor,leerDatos2);
	//}
	
}



function leerDatos3(oXML)
{
	var select=oXML.responseText.split('|');
	document.getElementById('html').innerHTML=select['0'];
	document.getElementById('pagina').value=select['1'];
	document.getElementById('categoriaml').value=select['2'];
	

}

