
breite =110;
groesse =8;
font = "Arial";
fett = "normal";
kursiv = "normal";
hintergrundfarbe = "#A7BADB";
schriftfarbe = "#000000";
linkfarbe = "#FFFFFF";
linkhover = "#000000";
linkhintergrund = "#FFFAF0";
headHintergrund = "#FFFAF0";
headFarbe =  "#000000";
body = "<body>";
document.writeln('<style type=text/css><!--');
document.writeln('#contextMenu {position: absolute; visibility: hidden; width: '+breite+'px; background-color: '+hintergrundfarbe+'; layer-background-color: '+hintergrundfarbe+'; border: 2px outset white; color: '+schriftfarbe+'; font-family: '+font+'; font-style: '+kursiv+'; font-size: '+groesse+'pt; padding: 0px;}');
document.writeln('a.menu:link, a.Menu:visited, a.Menu:active {color: '+linkfarbe+'; text-decoration: none; cursor: default;}');
document.writeln('a.menu:hover {color: '+linkhover+'; text-decoration: none; background-color: '+linkhintergrund+'; cursor: default;}');
document.writeln('\/\/\-\-\>\<\/style\>');
var menu;
function showMenu (evt) {
        if (document.all) {
                document.all.contextMenu.style.pixelLeft = event.clientX-5;
                document.all.contextMenu.style.pixelTop = event.clientY-5;
                document.all.contextMenu.style.visibility = 'visible';
                return false;
        } else if (document.layers) {
                if (evt.which == 3) {
                        document.contextMenu.left = evt.x-5;
                        document.contextMenu.top = evt.y-5;
                        document.contextMenu.onmouseout = function (evt) {this.visibility = 'hide';}
                        document.contextMenu.visibility = 'show';
                        return false;
                }
        }
        return true;
}
if (document.all) document.oncontextmenu =showMenu;
if (document.layers) {
        document.captureEvents(Event.MOUSEDOWN);
        document.onmousedown = showMenu;
}

document.writeln('</head>'+body);
document.writeln('<div id="contextMenu" onMouseOut="menu=this;this.tid=setTimeout('+"'menu.style.visibility = \\'hidden\\'', 20"+');" onMouseOver="clearTimeout(this.tid);"><p width=100% style="margin-bottom:0px;">');





function launch(url) {
  		remote = open(url, '', 'width=190,height=190,left=0,top=0');
	}	

	

ueberschrift("Menu");
text("<b>Navigation</b>");
link("<b>News</b>", "lnx.giovinazzo.it/modules/news");
link("<b>Forum</b>", "lnx.giovinazzo.it/modules/newbb");
link("<b>Chat</b>", "lnx.giovinazzo.it/modules/WebChat");
link("<b>Eventi</b>", "lnx.giovinazzo.it/modules/ecal");
link("<b>Radio FM</b>", "javascript:launch('http://lnx.giovinazzo.it/modules/iradio/blocks/popup.php')");
link("<b>Login</b>", "lnx.giovinazzo.it/user.php");
link("<b>Logout</b>", "lnx.giovinazzo.it/user.php?op=logout");
text("<b><hr>Giovinazzo.it</b>");


document.writeln('</div>');

function ueberschrift (txt) {
        document.write('<p width=100% style="text-align: center; color: '+headFarbe+'; background-color: '+headHintergrund+'; font-weight: bold; text-decoration: underline; font-size: '+(groesse+1)+'pt; text-align: center; font-family: '+font+'; margin-bottom: 0px;">'+txt+'</p>');
}
function text (txt) {
        document.writeln('<br>'+txt);
}
function link (txt, href, target, mailto) {
        if (!target) target = "_self";
        if (href.indexOf("javascript:")!=0) href = "http:\/\/"+href;
        document.writeln('<br><a href="'+href+'" target="'+target+'"         class=menu>'+txt+'</a>');}