
function realizaBusqueda(){
		var x = window.document.getElementById('qry').value;
		var y = window.document.getElementById('resultados');
		if(x != ""){
		  y.style.visibility = "visible";
		  y.style.display = "block";		
          callAHAH('/qry.php?qry='+x, 'resultados', '<br /><img src="/imagenes/ajax-loader.gif" width="16" height="16" alt="Realizando busqueda" /><p>Realizando su b&uacute;squeda.<br />Por favor espere ...</p>', 'Error');
        }
		return false;
}

function ocultaResultados(){
	var x =  window.document.getElementById('resultados');
	x.style.visibility = "hidden";
	x.style.display = "none";
}
