var menucontent = "";
var sourcedir = "http://www.burgenlandfeuerwehr.de";
menucontent += '<HTML><HEAD><STYLE><!--.generale{ position: absolute; left: -999; top: -999; z-index: 999; cursor: default; background-color: menu; color: menuText; width: 210;visibility: hidden; border-style: outset; border-width: 2px; height: 190}.components{ font-family: Comic Sans MS; font-size: 11px; padding-left: 10px; padding-right: 10px; padding-top: 3px; padding-bottom: 3px }// --></STYLE></HEAD>';
menucontent += '<BODY><DIV ID="right_menu" CLASS="generale">';
menucontent += '<center><b><font color="#0066FF" face="Comic Sans MS" size="2">www.burgenlandfeuerwehr.de</font></b></center><hr>';/* Menue-Ueberschrift */
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'home\')" STATUSTEXT="">&nbsp;<IMG SRC="men_start.gif" HEIGHT=30 WIDTH=30 ALIGN="absmiddle">&nbsp;&nbsp;... als Startseite</DIV>';
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'bookmark\')" STATUSTEXT="">&nbsp;<IMG SRC="men_favorit.gif" HEIGHT=32 WIDTH=30 ALIGN="absmiddle">&nbsp;&nbsp;... zu den Favoriten</DIV><HR>';
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'reload\')" STATUSTEXT="">&nbsp;<IMG SRC="men_aktuell.gif" HEIGHT=20 WIDTH=30 ALIGN="absmiddle">&nbsp;&nbsp;Aktualisieren</DIV><HR>';
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'emaila\')" STATUSTEXT="">&nbsp;<IMG SRC="men_email.gif" HEIGHT=30 WIDTH=30 ALIGN="absmiddle">&nbsp;&nbsp;E-Mail an den Webmaster</DIV><HR>';
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'print\')" STATUSTEXT="">&nbsp;<IMG SRC="men_drucken.gif" HEIGHT=27 WIDTH=30 ALIGN="absmiddle">&nbsp;&nbsp;diese Seite ausdrucken</DIV><HR>';
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'disclaimer\')" STATUSTEXT="">&nbsp;<IMG SRC="men_impressum.gif" HEIGHT=24 WIDTH=30 ALIGN="absmiddle">&nbsp;&nbsp;Impressum</DIV>';
menucontent += '<DIV CLASS="components" ONCLICK="exe(\'info\')" STATUSTEXT="">&nbsp;<IMG SRC="men_copyright.gif" HEIGHT=32 WIDTH=30 ALIGN="absmiddle">&nbsp;&nbsp;Copyright</DIV>';

menucontent += '</DIV></BODY></HTML>';
if (document.all) document.write (menucontent);
function light_on (){
if (event.srcElement.className == "components"){
event.srcElement.style.backgroundColor="highlight";
event.srcElement.style.color="highlightText";
}
}
function light_off (){
if (event.srcElement.className == "components"){
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 exe (type){
if (type == "home"){
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage('http://www.burgenlandfeuerwehr.de');
} else if (type == "bookmark"){
var imgFav= new Image();
imgFav.src= "favicon.ico";
window.external.AddFavorite('http://www.burgenlandfeuerwehr.de');
} else if (type == "reload"){
self.location.reload();
} else if (type == "emaila"){
location.href="mailto:&#118;&#101;&#114;&#98;&#97;&#110;&#100;&#64;&#98;&#117;&#114;&#103;&#101;&#110;&#108;&#97;&#110;&#100;&#102;&#101;&#117;&#101;&#114;&#119;&#101;&#104;&#114;&#46;&#100;&#101";
} else if (type == "emailb"){
location.href="mailto:&#118;&#101;&#114;&#98;&#97;&#110;&#100;&#64;&#98;&#117;&#114;&#103;&#101;&#110;&#108;&#97;&#110;&#100;&#102;&#101;&#117;&#101;&#114;&#119;&#101;&#104;&#114;&#46;&#100;&#101";
} else if (type == "info"){
alert('© by C. Szkasko - Kreisfeuerwehrverband Burgenlandkreis e.V.  ');
} else if (type == "aktu"){
alert('Die letzte Aktualisierung von "© by Szkasko" war am: 2004');
} else if (type == "print"){
self.window.print();
} else if (type == "disclaimer"){
var winA = window.open('', 'Disclaimer', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=0,width=600,height=200  0');
var winB = window.open('impres.htm', 'Disclaimer');
} else if (type == "ip"){
var winA = window.open('', 'IP_Adresse', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=300,height=50  ');
var winB = window.open('http://checkip.dyndns.org', 'IP_Adresse');
}
}
function cancelproc () { window.event.cancelBubble = true;
window.event.returnValue = false;
}
function hide (){
right_menu.style.visibility = "hidden";
right_menu.style.left = -999;
right_menu.style.top = -999;
}
if (document.all){
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;
}