    function openWindow(path, widthX, heightX) {
      var helpWindow;
      param = 'toolbar=no,scrollbars=yes,directories=no,resizable=yes,width='+widthX+',height='+heightX;
      helpWindow = window.open(path, '', param);
      return false;
   }
   function setBrandSelect(id) {
      document.forms['addselectcontent'].elements['brandselect'].value = id;
      document.forms['addselectcontent'].submit();
      return false;
   }
   function open_menu(a){

   for (i=1; i<=7; i++){
	  var menuObject = document.getElementById('menu_'+i);
	  if (!menuObject) continue;
      document.getElementById('menu_'+i).style.display=((i==a)?"inline":"none");
   }
}

   function jumptolink(what){
         var selectedopt=what.options[what.selectedIndex];
         if (document.getElementById && selectedopt.getAttribute("target")=="newwin")
         window.open(selectedopt.value);
         else
         window.location=selectedopt.value;
         }
