function PopupWindow(url, title)
    {
    var win = window.open(url, title, 'width=580,height=450,scrollbars=yes,resize=no');

    win.focus();
    }

function show_date()
    {
    var months = new Array(13);

    months[1] = "JANUARY";
    months[2] = "FEBRUARY";
    months[3] = "MARCH";
    months[4] = "APRIL";
    months[5] = "MAY";
    months[6] = "JUNE";
    months[7] = "JULY";
    months[8] = "AUGUST";
    months[9] = "SEPTEMBER";
    months[10] = "OCTOBER";
    months[11] = "NOVEMBER";
    months[12] = "DECEMBER";
    var time = new Date();
    var lmonth = months[time.getMonth() + 1];
    var date = time.getDate();
    var year = time.getYear();

    // Y2K Fix
    if ((navigator.appName == "Microsoft Internet Explorer") && (year < 2000))
        year = "19" + year;

    if (navigator.appName == "Netscape")
        year = 1900 + year;

    document.write("" + lmonth + " ");
    document.write(date + ", " + year + "");
    }
