function jumpPage(newLoc) {
	newPage = newLoc.options[newLoc.selectedIndex].value
	if (newPage != "") {
			window.location = newPage
		}		
	}

function date() {
	RightNow=new Date();
	var themonth;
	var month=RightNow.getMonth()+1;
	if (month==1) themonth = "January";
	if (month==2) themonth = "February";
	if (month==3) themonth = "March";
	if (month==4) themonth = "April";
	if (month==5) themonth = "May";
	if (month==6) themonth = "June";
	if (month==7) themonth = "July";
	if (month==8) themonth = "August";
	if (month==9) themonth = "Sept.";
	if (month==10) themonth = "October";
	if (month==11) themonth = "Nov.";
	if (month==12) themonth = "Dec.";

	var date=RightNow.getDate();
	var year=RightNow.getYear();
	var day=RightNow.getDay();
	if (year==102){year="2002";}
	if (year==103){year="2003";}
	if (year==104){year="2004";}
	if (year==105){year="2005";}
	document.write(themonth+" "+date+", "+year+"");
	}