window.onload = initForm;
window.onunload = function() {};

function initForm() {
	document.getElementById("paintLocation").selectedIndex = 0;
	document.getElementById("paintLocation").onchange = jumpPage;
	document.getElementById("gotoLocation").selectedIndex = 0;
	document.getElementById("gotoLocation").onchange = jumpPage2;
	}

function jumpPage() {
	var newLoc = document.getElementById("paintLocation");
	var newPage = newLoc.options[newLoc.selectedIndex].value;

	if (newPage != "") {
		window.location = newPage;
	}
}



function jumpPage2() {
	var newLoc = document.getElementById("gotoLocation");
	var newPage = newLoc.options[newLoc.selectedIndex].value;

	if (newPage != "") {
		window.location = newPage;
	}
}


