  function popWindow(href,name,options) { 
    popPage(href,name,options); 
  }

  function popPage(href,name,options) { 
    if(href) { 
      if(options==null) { 
        options="location=yes,menubar=yes,resizable=yes,status=yes,scrollbars=yes,toolbar=yes"; 
      } 
      if(name==null) { name="popper"; } 
      var poppedWindow=window.open(href,name,options); 
      poppedWindow.focus(); // in case it's already opened 
    } 
  }

function clearText()
{
if (document.search.q.value == "Search archive...")
{
document.search.q.value = "" ;
}
}