window.onload = initForm;
window.onunload = function() {};

function initForm() {
	document.getElementById("newLocation").selectedIndex = 0;
	document.getElementById("newLocation").onchange = jumpPage;
	document.getElementById("newLocation2").selectedIndex = 0;
	document.getElementById("newLocation2").onchange = jumpPage2;
	document.getElementById("newLocation3").selectedIndex = 0;
	document.getElementById("newLocation3").onchange = jumpPage3;
}

function jumpPage() {
	var newLoc = document.getElementById("newLocation");
	var newPage = newLoc.options[newLoc.selectedIndex].value;

	if (newPage != "") {
		window.location = newPage;
	}
}

function jumpPage2() {
	var newLoc = document.getElementById("newLocation2");
	var newPage = newLoc.options[newLoc.selectedIndex].value;

	if (newPage != "") {
		window.location = newPage;
	}
}

function jumpPage3() {
	var newLoc = document.getElementById("newLocation3");
	var newPage = newLoc.options[newLoc.selectedIndex].value;

	if (newPage != "") {
		window.location = newPage;
	}
}