<!--

function activate() {
	var a = document.form1.select1.selectedIndex;
	if (a == 0) {
		return;
	}
	window.location = document.form1.select1[a].value;
}

// -->