// JavaScript Document

window.onload = init;
window.unonload = function() {};

function init() {
	if (document.getElementById("product_selection")) {
		document.getElementById("product_selection").onchange = changePage;
	}
}

function changePage() {
	var selectBar = document.getElementById("product_selection");
	var optionValue = selectBar.options[selectBar.selectedIndex].value;
	window.location = "view.php?product_code=" + optionValue;
	return false;
}
