now = new Date();
function makeMonthArray() {
    this.length=12;
    this[1]  = "Jan"; this[2]  = "Feb"; this[3]  = "Mar";
    this[4]  = "Apr"; this[5]  = "May"; this[6]  = "Jun";
    this[7]  = "Jul"; this[8]  = "Aug"; this[9]  = "Sep";
    this[10] = "Oct"; this[11] = "Nov"; this[12] = "Dec";
    return this;
}
function makeDayArray() {
    this.length=7;
    this[1] = "Sun"; this[2] = "Mon"; this[3] = "Tue";
    this[4] = "Wed"; this[5] = "Thu"; this[6] = "Fri";
    this[7] = "Sat";
    return this;
}
function _getFullYear() {
    var y = this.getYear();
    if (y < 1000) y += 1900;
    return y.substr(2);
}
function writeDate() {
    if (!now.getFullYear) now.getFullYear = _getFullYear;
    monthName = new makeMonthArray(); dayName = new makeDayArray();
    document.write (monthName[now.getMonth() + 1] + " " + now.getDate() + ", " + now.getFullYear());
}
function openwin(url,name,h,w,t,l,res,bar,scroll) {
  window.open(url,name,'width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',resizable=' + res + ',toolbar=' + bar + ',scrollbars=' + scroll + ',status=0,menubar=0,titlebar=0')
  }