function mClick(e)
{if (document.all)
{if (event.button == 2)
{alert("sorry !!");
return false;
}
}
if (document.layers)
{if (e.which == 3)
{alert("sorry !!");
return false;
}
}
}
function mOver(e)
{window.status=" ";
return true;
}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);
}
function keypressed()
{alert("sorry !!");
}
function chgStat()
{{defaultStatus = "Besuchen Sie das Hasenmuseum in Bubikon";
}
setTimeout("chgStat();", 100);
}
setTimeout("chgStat();", 100);
window.defaultStatus=" ";
document.onmouseover=mOver;
window.onmouseover=mOver;
document.onmousedown=mClick;
window.onmousedown=mClick;
document.onkeydown=keypressed;
