// JavaScript Document
function selecturl(s, link) {
	var gourl = link + s.options[s.selectedIndex].value;
	window.top.location.href = gourl;
} 
