
    
//    var searchControl = new GSearchControl();
//    var webSearch = new GwebSearch();
//    
//    
//    function myClass() { };
//    
//    myClass.prototype.mySearchComplete = function() {
//      if (webSearch.results.length > 0) {
//        document.getElementById("attendi").style.display = "none";
//        var resultHTML = '<table align="left" valign="top" cellspacing="0" cellpadding="0" border="0" height="100%" width="100%" bgcolor="#EFEDE1">';
//        for (i = 0; i < webSearch.results.length; i++) {
//          resultHTML +='<tr>';
//          resultHTML +='<td align="left" valign="top" width="5px" height="5px"><img alt="" src="/lenya/cipmo/live/structure_images/trasp.gif" border="0" width="5px" height="5px"/></td>';
//          resultHTML +='<td align="left" valign="top" width="15px" height="15px"><img alt="" src="/lenya/cipmo/live/structure_images/box_freccia.gif" border="0" width="15px" height="15px"/></td>';
//          resultHTML +='<td align="left" valign="top" width="3px" height="5px"><img alt="" src="/lenya/cipmo/live/structure_images/trasp.gif" border="0" width="3px" height="5px"/></td>';
//          resultHTML +='<td align="left" valign="top"><a href="' + webSearch.results[i].unescapedUrl + '" class="boxTesto">' + webSearch.results[i].titleNoFormatting + '</a></td>';
//          resultHTML +='<td align="left" valign="top" width="3px" height="5px"><img alt="" src="/lenya/cipmo/live/structure_images/trasp.gif" border="0" width="3px" height="5px"/></td>';
//          resultHTML +='</tr>';
//          resultHTML +='<tr>';
//          resultHTML +='<td align="left" valign="top" width="5px" height="5px"><img alt="" src="/lenya/cipmo/live/structure_images/trasp.gif" border="0" width="5px" height="5px"/></td>';
//          resultHTML +='<td align="left" valign="top" width="15px" height="15px"></td>';
//          resultHTML +='<td align="left" valign="top" width="3px" height="5px"><img alt="" src="/lenya/cipmo/live/structure_images/trasp.gif" border="0" width="3px" height="5px"/></td>';
//          resultHTML +='<td align="left" valign="top">' + webSearch.results[i].content + '</td>';
//          resultHTML +='<td align="left" valign="top" width="3px" height="5px"><img alt="" src="/lenya/cipmo/live/structure_images/trasp.gif" border="0" width="3px" height="5px"/></td>';
//          resultHTML +='</tr>';
//          resultHTML +='<tr>';
//          resultHTML +='<td align="left" valign="top" colspan="4"><img alt="" src="/lenya/cipmo/live/structure_images/trasp.gif" border="0" width="1px" height="5px"/></td>';
//          resultHTML +='</tr>';
//  
//        }
//        resultHTML +='</table>'
//        document.getElementById("risultati").innerHTML = resultHTML;
//        document.getElementById("risultati").style.display = "block";
//      } else {
//        document.getElementById("attendi").style.display = "block";
//        document.getElementById("risultati").style.display = "none";
//        document.getElementById("attendi").innerHTML = "Nessun risultato trovato";
//      }
//    }
//
//    var myObj = new myClass();
    
    function doSearch() {
            
      document.getElementById("area_lavoro").style.display = "none";
      document.getElementById("searchcontrol").style.display = "block";
      document.getElementById("searchcontroltitle").innerHTML = "Cerca";
      document.getElementById("attendi").innerHTML = "Attendere...";
      document.getElementById("attendi").style.display = "block";
      document.getElementById("risultati").style.display = "none";
      
      webSearch.setSiteRestriction("www.cipmo.org");
      searchControl.addSearcher(new GwebSearch());

      var searchString = document.search.text.value;
      
      webSearch.setNoHtmlGeneration();
      webSearch.setResultSetSize(GSearch.LARGE_RESULTSET);
      webSearch.setSearchCompleteCallback(myObj, myClass.prototype.mySearchComplete);
      webSearch.execute(searchString);
    }
