window.onload = initForm;

function initForm() {
	document.getElementById("galLocation").selectedIndex = 0;
	document.getElementById("galLocation").onchange = jumpPage1;
	document.getElementById("logLocation").selectedIndex = 0;
	document.getElementById("logLocation").onchange = jumpPage2;
	document.getElementById("catLocation").selectedIndex = 0;
	document.getElementById("catLocation").onchange = jumpPage3;	
	document.getElementById("regLocation").selectedIndex = 0;
	document.getElementById("regLocation").onchange = jumpPage4;	
	}

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

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


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

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


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

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

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

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