// JavaScript Document
with(document){
			// creates a list of Months in the list box
			var mydate = new Date();
			var myyear = mydate.getYear();
			if(myyear<2000){
				myyear += 1900;
			}
			for (var n=1900;n<=myyear;n++){
				write("<option value=");
				write(n);
				write(">");
				write(n);
				write("</option>");
			}
		}