<!-- 
   // Mouse XY-Position
   //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    var IE          = document.all?true:false;
    var browsertype = navigator.appName.toLowerCase();
    if (!IE) document.captureEvents(Event.MOUSEMOVE)
    document.onmousemove = getMouseXY;

    if (browsertype == "opera") { IE = false; }

    var tempX = 0;
    var tempY = 0;
    var offsetX = 0;
    var offsetY = 0;
    var scrollX = 0;
    var scrollY = 0;

    function getMouseXY(e) 
    {
      
      if (IE) {
        scrollY = document.body.parentElement.scrollTop;
        tempX   = event.clientX;
        tempY   = event.clientY;  }
      else {
        scrollY = 0; //window.pageYOffset;
        tempX   = e.pageX;
        tempY   = e.pageY; } 
        
      tempY = tempY + scrollY;
      tempX = tempX + scrollX;      

      if (tempX < 0){ tempX = 0; }
      if (tempY < 0){ tempY = 0; }

      window.status = 'Rittal Onlineshop'
      return true;
    }
//-->
