   function _confirm( sQuery, sUrl ) {
      if( confirm( sQuery ) )
         document.location.href = sUrl;
   }

   function menu( id ) {
      var box = document.getElementById( id );
      if( box.style.display == "none" ) {
         box.style.display = "block";
      }
      else {
         box.style.display = "none";
      }
   }

   function KatMeny( i ) {
      var e = document.getElementById( 'kat_'+i );
      var l = document.getElementById( 'kat_link_'+i );
      if( e.style.display == "none" ) {
         e.style.display = "block";
      } else {
         e.style.display = "none";
      }
   }

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=850,height=650,left = 0,top = 0');");
}

