<!--
var gotoURL;

function go2Page(selNum,form) {
	if (selNum == 1)
		gotoURL = form.select1.options[form.select1.selectedIndex].value;
	else if (selNum == 2)
		gotoURL = form.select2.options[form.select2.selectedIndex].value;

	if (gotoURL.indexOf("none") == 0)
		gotoURL = location.href;

	location.href = gotoURL;
}
//-->