<!-- 
var menucontent = ""; 
var sourcedir = ""; 
menucontent += '<HTML><HEAD><STYLE><!--.generale{ position: absolute; left: -999; top: -999; z-index: 999; cursor: hand; background-color: #4C779C; width: 190;visibility: hidden; border-style: solid; border-width: 1px; height: 100}.components{ font-family: Verdana, Arial, Helvetica, sans-serif; color: #DBE3EB; font-size: 9px; padding-left: 10px; padding-right: 10px; padding-top: 3px; padding-bottom: 3px }// --></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 += '<hr size="1" color="#6597C3"><center><a href="http://www.inmc.de" target="_blank"><img border="0" src="./inmcsmall.gif" width="88" height="31"></a></center><hr size="1" color="#6597C3">'; 
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'home\')" STATUSTEXT="Diese Seite als Startseite verwenden">- Seite als Startseite</DIV>'; 
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'bookmark\')" STATUSTEXT="Diese Seite zu den Favoriten hinzufügen">- Seite zu den Favoriten</DIV><hr size="1" color="#6597C3">'; 
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'email\')" STATUSTEXT="e-Mail an diese Person senden">- eMail @ INMC GmbH</DIV>';
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'voten1\')" STATUSTEXT="PLZ Vote 4 Us">- Voten @ INMC GmbH</DIV><hr size="1" color="#6597C3">'; 
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'info\')" STATUSTEXT="Info & Copyright">- Info & Copyright</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="#4C779C"; 
event.srcElement.style.color="#DBE3EB"; 
if (event.srcElement.STATUSTEXT) { 
window.status = event.srcElement.STATUSTEXT; 
} 
} 
} 
function light_off (){ 
if (event.srcElement.className == "components"){ 
event.srcElement.style.backgroundColor= "#4C779C"; 
event.srcElement.style.color="#DBE3EB"; 
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.inmc.de'); 
} else if (type == "bookmark"){ 
var imgFav= new Image(); 
imgFav.src= "http://www.inmc.de"; 
window.external.AddFavorite('http://www.inmc.de', 'INMC GmbH'); 
} else if (type == "reload"){ 
self.location.reload(); 
} else if (type == "voten1"){ 
location.href="http://www.inmc.de"; 
} else if (type == "email"){ 
location.href="mailto:of@inmc.de";      
}else if (type == "info"){ 
alert('Copyright © 2005 by INMC');  
} 
} 
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; 
} 
// -->