// JavaScript Document


/* Linksteuerung */

function Seitebuch(URL1,F1,URL2,F2)
    {  
     frames[F1].location.href=URL1;
     frames[F2].location.href=URL2;
	 
    }

/*  Adventskalenderanzeige  */

function advent() {
msg=window.open("Adventskalender/adventskalender.html","msg","height=500,width=600,left=60,top=20");
}
/*  Fenster öffnen  */
function Fenster(ziel)
{
    if(window.NeuWindow && NeuWindow.closed == false) {
         NeuWindow.location=ziel;
         NeuWindow.focus();
       }
       else {
NeuWindow=window.open(ziel,"MyWindow","width=500, height=500,toolbar=no,scrollbars=yes,status=no, resizable=yes");
         NeuWindow.focus();
       }
}



// End -->