<!-- Functie om de datum te berekenen -->
function makeMonthArray() {
     this.length=12;
     this[1] = "Jan.", this[2] = "Feb."; this[3] = "Maart";
     this[4] = "April", this[5] = "Mei"; this[6] = "Juni";
     this[7] = "Juli", this[8] = "Aug."; this[9] = "Sept.";
     this[10] = "Oct.", this[11] = "Nov."; this[12] = "Dec.";
     return(this);
}
function makeDayArray() {
     this.length=7;
     this[1] = "Zon.", this[2] = "Maa."; this[3] = "Din.";
     this[4] = "Woe.", this[5] = "Don."; this[6] = "Vrij.";
     this[7] = "Zat.";
     return(this);
}
function writeDate() {
        attdate = new Date();
        monthName = new makeMonthArray();
        dayName = new makeDayArray();
        day = attdate.getDay() + 1;
        date = attdate.getDate();
        month = attdate.getMonth() + 1;
        year = attdate.getYear();
                sec = attdate.getSeconds()
        if (90 <= year && year < 2000) {
                year = 1900 + year;
        }
        dateStr  = dayName[day];
        dateStr += " ";
        dateStr += date;
        dateStr += " ";
        dateStr += monthName[month];
        dateStr += " ";
        dateStr += year;
        document.write(dateStr);
}
<!-- Eind functie om de datum te berekenen -->

<!-- Funtie om de inhoud van twee frames te wisselen -->
function loadFrames2(frame1,page1,frame2,page2) {
eval("parent."+frame1+".location='"+page1+"'");
eval("parent."+frame2+".location='"+page2+"'");
}
<!-- Eind functie om twee frames te wisselen -->

<!-- Funtie om de inhoud van drie frames te wisselen -->
function loadFrames3(frame1,page1,frame2,page2,frame3,page3) {
eval("parent."+frame1+".location='"+page1+"'");
eval("parent."+frame2+".location='"+page2+"'");
eval("parent."+frame3+".location='"+page3+"'");
}
<!-- Eind functie om drie frames te wisselen -->



