/**********noticias**********/
function buscar_not(form){
	
	var myConn=new XHConn();
	var r=Math.random();
	myConn.connect('./sec/noticias/busqueda.php','POST','fecha1='+form.fecha.value+'&fecha2='+form.fecha2.value+'&pagina='+form.pagina.value+'&ran='+r,leerDatos);
}

function leerDatos(oXML)
{
	var select=oXML.responseText.split('|');

	document.getElementById('cambio').innerHTML=select['0'];
	if ( document.getElementById('pagina'))
		document.getElementById('pagina').value=select['1'];
	if ( document.getElementById('fecnot'))
		document.getElementById('fecnot').value=select['2'];
	if ( document.getElementById('fecnot2'))
		document.getElementById('fecnot2').value=select['3'];
	
	
}

/****************************/

/**********recetas***********/
function comarca(valor)
{
		try {
			var myConn = new XHConn();
			myConn.connect('./sec/recetas/busqueda.php','POST','valor='+valor,leerDatosCom);
		}catch(e) {}
	
	
}

function leerDatosCom(oXML){
	var select=oXML.responseText.split('|');

	document.getElementById('cambio').innerHTML=select['0'];
	document.getElementById('pagina').value=select['1'];
	document.getElementById('cambiocom').value=select['2'];
}

/***************************/


