function submiteartop(destino,theform)
{
	
		document.searchtop.target="_top";
		document.searchtop.action=destino;
		document.searchtop.cat.value="";
		document.searchtop.ie.value="";
		document.searchtop.submit();
}

function submiteartopcateg(destino)
{
		document.searchtop.target="_top";
		document.searchtop.action=destino;
		document.searchtop.cat.value="gwd/Top/World";
		document.searchtop.ie.value="";
		document.searchtop.submit();
}

function submitearbottom(destino)
{
		document.searchtop.target="_top";
		document.searchbottom.action=destino;
		document.searchbottom.cat.value="";
		document.searchbottom.ie.value="";
		document.searchbottom.submit();
}

function submitearbottomcateg(destino)
{
		document.searchbottom.target="_top";
		document.searchbottom.action=destino;
		document.searchbottom.cat.value="gwd/Top/World";
		document.searchbottom.ie.value="";
		document.searchbottom.submit();
}


function validavacios(form1)
{
if (form1.q.value == "")
  {
    alert("Para realizar una búsqueda debes ingresar una palabra clave");
    form1.q.focus();
    return (false);
  }
return true;
}