/* Top location */
    if(top.location == self.location){
    top.location.href="index.htm"
    }
/* Function stänger submeny*/
    function togleMenu(currMenu) {
      if (document.getElementById) {
        thisMenu = document.getElementById(currMenu).style
        if (thisMenu.display == "block") {
          thisMenu.display = "none"
        }
        else {
          thisMenu.display = "none"
        }
        return false
      }
      else {
        return true
      }
    }
/* Slut function submeny*/
/* Function öppnar submeny */
    function toggleMenu(currMenu) {
      if (document.getElementById) {
        thisMenu = document.getElementById(currMenu).style
        if (thisMenu.display == "block") {
          thisMenu.display = "block"
        }
        else {
          thisMenu.display = "block"
        }
        return false
      }
      else {
        return true
      }
    }
/* Slut function submeny*/