GUI Components JavaScript DHTML



A Calendar

    var now = new Date;
    var MyMonth = new Array("January", "February", "March", "April", "May", 
                            "June", "July", "August", "September", "October", 
                            "November", "December");
    var MyYear = now.getFullYear();
    var Days = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
    var DaysinWeek = 7;
    var Today = now.getDate();
    var ThisMonth = now.getMonth();
    var MonthStart = now.setDate(1);
    var AddDays = now.getDate();
    var DayofWeek = now.getDay();
    var DaysinMonth = Days[now.getMonth()];
    function CreateCurrMonth(TableBG,CellBG){
        // Checks Leap Year
        if ((((MyYear % 4)==0) && ((MyYear % 100)!=0) || ((MyYear % 400)==0)) && (DaysinMonth == 28)) { 
            DaysinMonth = 29;
        }else{
            DaysinMonth = Days[now.getMonth()];
        }
        document.write ("                        TableBG +">                        CellBG + ">" + 
                        MyMonth[now.getMonth()] + " " + now.getFullYear() + 
                        "
");
                        
        document.write ("");
        // Build rows in a month
        for (i = 0; AddDays < DaysinMonth + 1; i++){
            if (i < DayofWeek){
                document.write ("");
            } else {
                if ((AddDays == Today) && (now.getMonth() == ThisMonth)){
                  document.write ("" + AddDays + "");
                    AddDays = AddDays + 1
                } else {
                  if ((i % 7) == 0){
                      document.write ("");
                      document.write ("");
                  }
                  document.write ("" + AddDays + "");
                  AddDays = AddDays + 1
                }
            }
        }
        document.write ("");
    }
    function AddCalendar(addmonth,TableBG,CellBG){
        var NewMonth = ThisMonth + addmonth
        if (NewMonth > 11){
            NewMonth=(NewMonth-12);
            now.setYear(MyYear + 1);
        }
        now.setMonth(NewMonth);
        DayofWeek = now.getDay();
        AddDays = now.getDate();
        DaysinMonth = Days[now.getMonth()];
        CreateCurrMonth(TableBG,CellBG);
    }
    // Prints today's date
    function TodayDate(){
        document.write ("

Today: " + MyMonth[now.getMonth()] + " ");
        document.write (Today + ", ");
        document.write (MyYear);
    }