<!-- Diese Anwendung stammt von www.modus-dancing.de

Datum = new Date();
    var D_m = (Datum.getDate());
    var M_m = (Datum.getMonth())+1;
    var Y_m = (Datum.getYear());
    if(Y_m < 999) Y_m+=1900;
    var trm = (M_m*100) + D_m;

var GoMonth = new Array();
GoMonth[0] = "nix";
GoMonth[1] = "h-light1.htm#"+trm;
GoMonth[2] = "h-light1.htm#"+trm;
GoMonth[3] = "h-light1.htm#"+trm;
GoMonth[4] = "h-light2.htm#"+trm;
GoMonth[5] = "h-light2.htm#"+trm;
GoMonth[6] = "h-light2.htm#"+trm;
GoMonth[7] = "h-light3.htm#"+trm;
GoMonth[8] = "h-light3.htm#"+trm;
GoMonth[9] = "h-light3.htm#"+trm;
GoMonth[10] = "h-light4.htm#"+trm;
GoMonth[11] = "h-light4.htm#"+trm;
GoMonth[12] = "h-light4.htm#"+trm;

function jump(){
    ((Y_m==2011)&&(M_m==12))
    ?setTimeout("document.location.replace(GoMonth[1])",100)
    :setTimeout("document.location.replace(GoMonth[M_m])",100);
    }
//-->

