// JavaScript Document
with(document){
			// creates a list of Months in the list box
			for (var n=0;n<Month.length;n++){
				write("<option value=");
				write(Month[n]);
				write(">");
				write(Month[n]);
				write("</option>");
			}
		}