
// öffnet ein Fenster in wählbarer Größe mit wählbarer Datei
// href="javascript:openWin('weg.html','',600,450)"

function openWin(file, type, width, height) {
         window.open(file, type, 'toolbar=no,width='+width+',height='+height+',directories=no,status=no,scrollbars=yes,resizable=no,menubar=no');
}
/*  Versuch fuer google link in GEO  */
function openNewWin(file, type, width, height) {
         window.open(file, type, 'toolbar=no,width='+width+',height='+height+',directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no');
}

/* NICHT in index und auftritte !! */
function Klappen(Id) {
         var KlappText = document.getElementById('Div'+Id);
         var KlappBild = document.getElementById('Pic'+Id);
         var Minus='2010/img/minus1.gif', Plus='2010/img/plus1.gif';
         if (KlappText.style.display == 'none') {
             KlappText.style.display = 'block';
             KlappBild.src = Minus;
             KlappBild.title = 'Details verbergen';
           } else {
             KlappText.style.display = 'none';
             KlappBild.src = Plus;
             KlappBild.title = 'Details anzeigen';
         }
}


function colFarbe(Id, Farbe, Farbe1) {
         /* onmouseover, onmouseout NUR <tr> ohne Programm */
         var KlappTr  = document.getElementById('Tr'+Id);
         KlappTr.style.backgroundColor = Farbe;
}


function changeColor(Id, Farbe, Farbe1) {
         /* onmouseover, onmouseout <tr> im kalender */
         var KlappTr  = document.getElementById(Id);
         KlappTr.style.backgroundColor = Farbe;
}