function swap(m) {
    if(m != null) {
        //document.getElementById(m).src = "http://www.futuralia.fil.pt/futuralia/framework/imagens/setablue.jpg";
        
        var liObj = m.parentNode;
        if(liObj != null) {
            liObj.className = "hover";
        }
    }    
}
	
function unswap(m) {
    if(m != null) {
        //document.getElementById(m).src = "http://www.futuralia.fil.pt/futuralia/framework/imagens/setagrey.jpg";
                
        var liObj = m.parentNode;
        if(liObj != null) {
            liObj.className = "";
        }
    }   
}    

function showdiv(m) {
    document.getElementById(m).style.display = "block";
}
	
function hidediv(m) {
    document.getElementById(m).style.display = "none";
}
	
function writeinbox(m) {
    document.getElementById('pesquisabox2').value = m;
    document.getElementById('sites').style.display = "none";
}
	
function searchweb() {
    y = document.getElementById('pesquisabox').value;
    if(y == "Pesquisar") {
        alert("deve definir um termo de pesquisa")
    } else {
        z = document.getElementById('pesquisabox2').value;
        if (z == "Google") {
            var w = window.open("http://www.google.pt/search?q="+y);
            w.focus();
        }
        
        if (z=="Portal FIL") {
            var w = window.open("http://www.fil.pt/irj/servlet/prt/portal/prtroot/iWeb.pesquisa?Grupo=$server_name$&keywords="+y);
            w.focus();
        }
        
        if (z == "Outras Feiras") {
            var w = window.open("http://www.topv.fil.pt/irj/servlet/prt/portal/prtroot/iWeb.pesquisa?Grupo=Feiras&keywords="+y);
            w.focus();
        }		

        if (z == "Neste site") {
            /*var w = window.open("http://www.fil.pt/irj/servlet/prt/portal/prtroot/iWeb.pesquisa?Grupo=Futuralia&keywords="+y);
            w.focus();*/
	    window.open();
        }
    }
}	
	
function doSearch(lang, currSitePage) {
  var y = document.getElementById('pesquisabox').value;
  if(y == "Pesquisar") {
    alert("deve definir um termo de pesquisa")
  } else {
    var z = document.getElementById('pesquisabox2').value;
    if (z == "Google") {
        var w = window.open("http://www.google.pt/search?q="+y);
        w.focus();
    }
    
    if (z=="Portal FIL") {
        var w = window.open("http://www.fil.pt/irj/servlet/prt/portal/prtroot/iWeb.pesquisa?Grupo=$server_name$&keywords="+y);
        w.focus();
    }
    
    if (z == "Outras Feiras") {
        var w = window.open("http://www.topv.fil.pt/irj/servlet/prt/portal/prtroot/iWeb.pesquisa?Grupo=Feiras&keywords="+y);
        w.focus();
    }		
    
    if (z == "Neste Site" || z == "Neste site" ) {
      /*var w = window.open("http://www.fil.pt/irj/servlet/prt/portal/prtroot/iWeb.pesquisa?Grupo=Futuralia&keywords="+y);
      w.focus();*/
      location.href= "?lang=" + lang.toLowerCase() + "&page=" + currSitePage + "&search=" + y;
      
    }
  }    
}

