<!--
// rechte Maustasten und kopier-Script
var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
// -->

function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

// Statusleisten-Script
function hidestatus(){
window.status='[::: the other kind :::]'
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus

// LinkAuf-Script
function linkauf(link_name, link_hoehe, link_breite){

  newwin=window.open(
    link_name,
    'Description',
    'height='+link_hoehe+','+
    'width='+link_breite+','+
    'toolbar=no,'+
    'location=no,'+
    'directories=no,'+
    'status=no,'+
    'menubar=no,'+
    'scrollbars=yes,'+
    'resizable=yes,'+
    'copyhistory=no,'+
    'top=0,left=0'
  );
  newwin.focus();  // Fenster in den Vordergrund
}

// Update-Script
var Monatsname = ["Januar", "Februar", "M&auml;rz", "April", "Mai","Juni", "Juli", "August", "September", "Oktober","November", "Dezember"];
var Tagname = ["Sonntag", "Montag", "Dienstag", "Mittwoch","Donnerstag", "Freitag", "Samstag"];
function modifyString()
{
var date = new Date();
date.setTime(Date.parse(document.lastModified));// changed to "getFullYear" for Firefox [ruul]
return Tagname[date.getDay()] + ", den " + date.getDate() + ". "+ Monatsname[date.getMonth()] + " " + date.getFullYear();
}
//-->