<!--
var menuinhalt = "";
menuinhalt += '<HTML><HEAD><STYLE><!--.generale{ position: absolute; left: -999; top: -999; z-index: 999; cursor: default; background-color: menu; color: menuText; width: 178;visibility: hidden; border-style: outset; border-width: 2px; height:  100}.menuinhalt{ font-family: Ms Shell Dlg; font-size: 12px; padding-left: 10px; padding-right: 10px; padding-top: 3px;  padding-bottom: 3px }// --></STYLE></HEAD>';
menuinhalt += '<BODY><OBJECT ID="cerca" HEIGHT="0" WIDTH="0"></OBJECT><DIV ID="right_menu" CLASS="generale">';
menuinhalt += '<hr size="3"><center><img border="0" src="http://www.stammtisch-zur-linde.de/images/logo_kontext.jpg" width="167" height="21"></center><hr size="3">';
menuinhalt += '<DIV CLASS="menuinhalt" ONCLICK="exe(\'home\')" STATUSTEXT="Diese Seite als Startseite"><img border="0"  src="http://www.stammtisch-zur-linde.de/images/startseite.gif" width="12" height="12"> Diese Seite als Startseite</DIV>';
menuinhalt += '<DIV CLASS="menuinhalt" ONCLICK="exe(\'bookmark\')" STATUSTEXT="Diese Seite zu den Favoriten"><img border="0"  src="http://www.stammtisch-zur-linde.de/images/favoriten.gif" width="12" height="12"> Diese Seite zu den Favoriten</DIV><HR size="3">';
menuinhalt += '<DIV CLASS="menuinhalt" ONCLICK="exe(\'reload\')" STATUSTEXT="Seite aktualisieren"><img border="0"  src="http://www.stammtisch-zur-linde.de/images/aktualisieren.gif" width="12" height="12"> Aktualisieren</DIV><HR size="3">';
menuinhalt += '<DIV CLASS="menuinhalt" ONCLICK="exe(\'emaildp\')" STATUSTEXT="e-Mail an den Webmaster"><img border="0"  src="http://www.stammtisch-zur-linde.de/images/email.gif" width="12" height="12"> e-Mail an den Webmaster</DIV><HR size="3">';
menuinhalt += '<DIV CLASS="menuinhalt" ONCLICK="exe(\'info\')" STATUSTEXT="Info & Copyright"><img border="0" src="http://www.stammtisch-zur-linde.de/images/copyright.gif" width="12" height="12"> Info & Copyright</DIV>';
menuinhalt += '</DIV></BODY></HTML>';
// ------------------------------------------------------------------------------------------------------------------

if (document.all && window.print) document.write(menuinhalt);

function light_on (){
if (event.srcElement.className == "menuinhalt"){
event.srcElement.style.backgroundColor="#bbb29f";
event.srcElement.style.color="#000000";
if (event.srcElement.STATUSTEXT) {
window.status = event.srcElement.STATUSTEXT;
}
}
}
function light_off (){
if (event.srcElement.className == "menuinhalt"){
event.srcElement.style.backgroundColor= "menu";
event.srcElement.style.color="menuText";
window.status = "";
}
}
function extension (){
if (event.clientY> 0 && event.clientX >0 && event.clientY<document.body.clientHeight &&  event.clientX<document.body.clientWidth) {
if (document.body.clientHeight - event.clientY + document.body.scrollTop>document.body.clientHeight / 2){
right_menu.style.top = event.clientY + document.body.scrollTop;
} else {
right_menu.style.top = event.clientY + document.body.scrollTop - 255;
}
if (document.body.clientWidth- event.clientX + document.body.scrollLeft >document.body.clientWidth / 2){
right_menu.style.left = event.clientX + document.body.scrollLeft;
} else {
right_menu.style.left = event.clientX + document.body.scrollLeft - 180;
}
} else {
right_menu.style.top = document.body.scrollTop;
right_menu.style.left = document.body.scrollLeft;
}
right_menu.style.visibility = "visible";
return false;
}
function hide (){
right_menu.style.visibility = "hidden";
right_menu.style.left = -999;
right_menu.style.top = -999;
}
function exe (wahl){
if (wahl == "back"){
history.back();
} else if (wahl == "forward"){
history.forward();
} else if (wahl == "home"){
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage('http://www.stammtisch-zur-linde.de/');
} else if (wahl == "bookmark"){
var imgFav= new Image();
imgFav.src= "images/favicon.ico";
window.external.AddFavorite('http://www.stammtisch-zur-linde.de', ':::: Stammtisch Zur Linde ::::');
} else if (wahl == "reload"){
self.location.reload();
} else if (wahl == "emaildp"){
location.href="mailto:webmaster@stammtisch-zur-linde.de";
}else if (wahl == "info"){
alert('stammtisch-zur-linde.de © 2002 by Webdesign Stefan Lallinger');
}
}
function cancelproc () { window.event.cancelBubble = true;
window.event.returnValue = false;
}
if (document.all && window.print){
document.oncontextmenu=extension;
document.body.onclick=hide;
right_menu.onmouseover=light_on;
right_menu.onmouseout=light_off;
right_menu.ondragstart=cancelproc;
right_menu.onselectstart=cancelproc;
}
// -->