function Buscar(){
	palabras = document.getElementById('txt').value;
	palabras = palabras.replace(/ /g, '-');
	palabras = palabras.replace(/,/g, '');
	location.href='http://'+location.hostname+'/buscador/'+palabras+'/';
}
function noenter(e) {
  tecla = (document.all) ? e.keyCode :e.which;
  if(tecla==13){
	palabras = document.getElementById('txt').value;
	palabras = palabras.replace(/ /g, '-');
	palabras = palabras.replace(/,/g, '');
	location.href='http://'+location.hostname+'/buscador/'+palabras+'/';
  }
  //return (tecla!=13);
}

fuente_default = 9;
fuente_actual = 9;
fuente_maspequena = 7;
fuente_masgrande = 18; 
function MasTxt(div) {
fuente_actual = fuente_actual+2;
    if (fuente_actual > fuente_masgrande) {
    fuente_actual = fuente_masgrande
    }
var divID = document.getElementById(div);
divID.style.fontSize = fuente_actual+"pt";
}
function MenosTxt(div) {
fuente_actual = fuente_actual-2;
    if (fuente_actual < fuente_maspequena) {
    fuente_actual = fuente_maspequena
    }
var divID = document.getElementById(div);
divID.style.fontSize = fuente_actual+"pt";
}

function Guardar(valor){
	window.open("../../generarhtml.php?url="+valor,"html","width=1,height=1");
}

function Pdf(valor){
	window.open("../../guardapdf.php?id="+valor);
}
