
 
//picshow

    wmtt = null;
    document.onmousemove = updateWMTT;

    function updateWMTT(e)
    {
        x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
        y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
        if (wmtt != null)
        {
            wmtt.style.left = (x + 20) + "px";
            wmtt.style.top = (y + 20) + "px";
        }
    }

    function showWMTT(id)
    {
        wmtt = document.getElementById(id);
        wmtt.style.display = "block"
    }

    function hideWMTT()
    {
        wmtt.style.display = "none";
    }
    
/*/no-right-click-witzout-alert

function click (e) {
  if (!e)
    e = window.event;
  if ((e.type && e.type == "contextmenu") || (e.button && e.button == 2) || (e.which && e.which == 3)) {
    if (window.opera)
      window.alert("Sorry: Diese Funktion ist deaktiviert.");
    return false;
  }
}
if (document.layers)
  document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = click;
document.oncontextmenu = click;


//anti-textklau

function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
*/
