function categoria(valor)
{
	
	
	//if(valor!='0'){
		var myConn = new XHConn();
		myConn.connect('./mix_comercial_listado/categoria.php','POST','valor='+valor,leerDatos);
	//}
	
}

function categoria_mul(valor)
{
	
	//if(valor!='0'){
		var myConn = new XHConn();
		myConn.connect('./multimedia/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'];
	
	//alert(document.getElementById('pagina').value);
}




