<!-- Begin
// functions for the date display updated March 2008 aj DME

function MakeArraya(size) {
 this.length = size;
 for(var i = 1; i <= size; i++) {
  this[i] = "";
 }
 return this;
}

function MakeArrayb(size) {
 this.length = size;
 for(var i = 1; i <= size; i++) {
  this[i] = "";
 }
 return this;
}

function showtime () {
 var now = new Date();
 var year = now.getYear();
 var month = now.getMonth() + 1;
 var date = now.getDate();
 YearStringObject = new String(year);
 if (YearStringObject.length < 4) { 
  year = '20' + YearStringObject.substr(1,2);
 }

 Month = new MakeArrayb(12);
 Month[1]="January";
 Month[2]="February";
 Month[3]="March";
 Month[4]="April";
 Month[5]="May";
 Month[6]="June";
 Month[7]="July";
 Month[8]="August";
 Month[9]="September";
 Month[10]="October";
 Month[11]="November";
 Month[12]="December";

 var timeValue = "";
 timeValue += (Month[month]) + " ";
 timeValue += date + ", " + year + "    ";
 document.write (timeValue);
}




// stuff to do on window load
function StatusBar() {
 window.defaultStatus = "NCBN";
}


function openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}


// End -->
