/*
 * Son of Suckerfish Dropdowns
 * By Patrick Griffiths and Dan Webb
 * http://www.htmldog.com/articles/suckerfish/dropdowns/
 */

/* 
var isIE6 = ((navigator.userAgent.indexOf("MSIE 6.") != -1) && (navigator.userAgent.indexOf("Opera") == -1));

sfHover = function() {
  var sfEls = document.getElementById("nav_items_0").getElementsByTagName("li");
  for (var i=0; i<sfEls.length; i++) {
    sfEls[i].onmouseover=function() {
      if(isIE6) {
        sel = document.getElementsByTagName("select");
        for (var i=0; i<sel.length; i++) {
          sel[i].style.visibility = 'hidden';
        }
      }
      this.className+=" sfhover";
    }
    sfEls[i].onmouseout=function() {
      document.getElementById('content-search').style.visibility = 'visible';
      if(isIE6) {
        sel = document.getElementsByTagName("select");
        for (var i=0; i<sel.length; i++) {
          sel[i].style.visibility = 'visible';
        }
      }
      this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
    }
  }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
*/

function popup(path) {
  var width = 940;
  var height = 530;
  window.open(path,"mywindow","top=0,left=0,status=0,scrollbars=1,toolbar=0,menubar=0,location=0,resizable=1,width="+width+",height="+height);
}
