/*
Months array used to print month names in drop down boxes.
*/
var months = new Array();
months[0] = "Month";
months[1] = "Jan.";
months[2] = "Feb.";
months[3] = "Mar.";
months[4] = "Apr.";
months[5] = "May";
months[6] = "Jun.";
months[7] = "Jul.";
months[8] = "Aug.";
months[9] = "Sept.";
months[10] = "Oct.";
months[11] = "Nov.";
months[12] = "Dec.";