// JavaScript Document
function cambiaPrecio(pmin,pmax){
	document.getElementById('pmin').value = pmin;
	document.getElementById('pmax').value = pmax;
	document.fbuscador.submit();
}

function pag(pag){
	$("#divPortatiles").html("<h1 style=\"margin:0px; padding-bottom:500px\"><img src=\"images/cuadros.gif\" alt=\"\" />&nbsp;&nbsp;&nbsp;Buscando... Un momento por favor</h1>");
	$.ajax ({
		cache: false,
		data: $("#fbuscador").serialize(),
		url: "/index.resultados.php?pag="+pag,
		success: function(data){
			$("#divPortatiles").html(data);
		}

	});	
}


