
if (strBrowserType=="IE4" || strBrowserType=="IE5" || strBrowserType=="NN6")
   document.write("<style>tr.point {display:none;}<\/style>");


var iPoint = 1;
var iWhich = 0;

function rb_Menu(iAkt){
  if (!(strBrowserType=="IE4" || strBrowserType=="IE5" || strBrowserType=="NN6")) return;
   if (iWhich!=0){
     iPoint=rb_closeMenu();
     }
   if (iWhich==iAkt){
     iWhich=0;
     return;
     }
   iWhich=iAkt;
   rb_openMenu();   
   }
   
function rb_closeMenu(){
   var strID="point-"+iWhich+"-";
   iPoint-=2;
   while (document.getElementById(strID + iPoint) || (document.all && document.all[strID+iPoint])){
     switch (strBrowserType){
      case "IE4" :  document.all[strID+iPoint].style.display="none";
      			break;
      case "IE5" :  document.getElementById(strID+iPoint).style.display="none";
      			break;
      case "NN6" :  document.getElementById(strID+iPoint).style.display="none";
      			break;
      }
     iPoint--;
   }
   return 1;
}
     

function rb_openMenu(){
  var strID="point-"+iWhich+"-"+iPoint;
  iPoint++;
  if (document.getElementById(strID) || (document.all && document.all[strID])){
    switch (strBrowserType){
      case "IE4" :  document.all[strID].style.display="block";
      			break;
      case "IE5" :  document.getElementById(strID).style.display="block";
      			break;
      case "NN6" :  document.getElementById(strID).style.display="table-row";
      			break;
      }
   /* else {
      for (i=0;i<document.getElementById(strID).childNodes.length;i++)
          if (document.getElementById(strID).childNodes[i].tagName=="TD")
            document.getElementById(strID).childNodes[i].style.height='30px';
       document.getElementById(strID).style.height='30px';
       } */
    setTimeout("rb_openMenu()",100); 
  }
}

