<!--
// Code controling form navigation options ...
var choice, gotourl;
function navform(arg){
	choice = arg.selectedIndex;
	gotourl = arg.options[choice].value;
	location = gotourl;
}
//-->