<!-- 
var menucontent = ""; 
var sourcedir = ""; 
menucontent += '<HTML><HEAD><STYLE><!--.generale{ position:absolute; left:-999; top:-999; z-index:999; cursor:default; background-color:#CCCCDD; color:#000000; width:155; visibility:hidden; border-style:outset; border-width:2px; height:100}.components{ font-family:Comic Sans MS; font-size:11px; padding-left:8px; padding-right:8px; padding-top:2px; padding-bottom:2px }// --></STYLE></HEAD>'; 
menucontent += '<BODY><OBJECT ID="cerca" CLASSID="clsid:B45FF030-4447-11D2-85DE-00C04FA35C89" HEIGHT="0" WIDTH="0"></OBJECT><DIV ID="right_menu" CLASS="generale">'; 
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'aktuell\')" STATUSTEXT="Aktuelle Tennispage-News"><img border="0" src="gifs/ball.jpg" width="16" height="16"> Tennispage News</DIV>'; 
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'spieler\')" STATUSTEXT="Wöchentliche Preisverleihung"><img border="0" src="gifs/ball.jpg" width="16" height="16"> Honsel-Award</DIV>'; 
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'tipp\')" STATUSTEXT="Überblick Tennis-Tipps"><img border="0" src="gifs/ball.jpg" width="16" height="16"> Tennis-Tipps</DIV><HR size="3">';
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'druck\')" STATUSTEXT="Seite ausdrucken"><img border="0" src="gifs/druck.jpg" width="16" height="16"> Seite drucken</DIV>'; 
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'empf\')" STATUSTEXT="Tennispage weiterempfehlen per Email"><img border="0" src="gifs/post.jpg" width="16" height="16"> Weiterempfehlen</DIV>';
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'home\')" STATUSTEXT="Diese Seite als Startseite"><img border="0" src="gifs/fav.jpg" width="16" height="14"> Seite als Startseite</DIV>'; 
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'bookmark\')" STATUSTEXT="Diese Seite zu den Favoriten"><img border="0" src="gifs/fav.jpg" width="16" height="14"> Seite zu den Favoriten</DIV><HR size="3">';
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'buch\')" STATUSTEXT="Gästebuch"><img border="0" src="gifs/smile.gif" width="15" height="15"> Gästebuch</DIV>'; 
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'emaildp\')" STATUSTEXT="e-Mail an den Webmaster"><img border="0" src="gifs/post.jpg" width="16" height="16"> e-Mail an Webmaster</DIV>'; 
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'info\')" STATUSTEXT="Info"><img border="0" src="gifs/info.jpg" width="16" height="16"> Info</DIV>'; 
menucontent += '</DIV></BODY></HTML>'; 
if (document.all && window.print) document.write (menucontent); 
function light_on (){ 
if (event.srcElement.className == "components"){ 
event.srcElement.style.backgroundColor="#6699CC"; 
event.srcElement.style.color="#000000"; 
if (event.srcElement.STATUSTEXT) { 
window.status = event.srcElement.STATUSTEXT; 
} 
} 
} 
function light_off (){ 
if (event.srcElement.className == "components"){ 
event.srcElement.style.backgroundColor= "#CCCCDD"; 
event.srcElement.style.color="#000000"; 
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 (type){ 
if (type == "back"){ 
history.back(); 
} else if (type == "forward"){ 
history.forward(); 
} else if (type == "home"){ 
document.body.style.behavior='url(#default#homepage)'; 
document.body.setHomePage('http://www.tennispage.de'); 
} else if (type == "bookmark"){ 
var imgFav= new Image(); 
imgFav.src= "http://www.marc-brenzel.de/favicon.ico"; 
window.external.AddFavorite('http://www.tennispage.de', 'Tennispage'); 
} else if (type == "reload"){ 
self.location.reload(); 
} else if (type == "empf"){ 
location.href="mailto:?subject=Linkempfehlung:%20www.Tennispage.de&amp;body=Interessante%20Tennisseite:%20http:%2F%2Fwww.Tennispage.de%2F"; 
} else if (type == "emaildp"){ 
location.href="mailto:webmaster@tennispage.de"; 
}else if (type == "info"){ 
alert('Tennispage 2002-2006 by Marc Brenzel'); 
} else if (type == "aktuell"){ 
self.location="aktuell.html"; 
} else if (type == "spieler"){ 
self.location="spieler.html"; 
} else if (type == "tipp"){ 
self.location="tipp.html"; 
} else if (type == "buch"){ 
self.location="http://www.lm-tool.de/cgi-bin/gb/gb.cgi?id=MarcBrenzel&action=index"; 
} else if (type == "druck"){ 
self.location="javascript:window.print()"; 
} 
}
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; 
} 
// -->
