// ===========================================================================================
// Credit: Code written By David Bowdoin, except where noted.
// ===========================================================================================

var theform;

function Init(fVer) {
	if(fVer != 1) window.location.reload();
	if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
		theform = document.forms["Form1"];
	}
	else {
		theform = document.Form1;
	}
}

function Page(pageID) {
	theform.__EVENTTARGET.value = "NextPage";
	theform.__EVENTARGUMENT.value = pageID;
	theform.submit();
}

function SelectEventType(eventID) {
	theform.__EVENTTARGET.value = "EventType";
	theform.__EVENTARGUMENT.value = eventID;
	theform.submit();
}
