function go1(){
	if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") {
		location = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value
	}
}

function P7_hideSelect(a){ //v1.0 by PVII
	var g,h=(a==1)?"hidden":"visible";
	if(document.getElementsByTagName){
		g=document.getElementsByTagName("select");
		if(g){for(var i=0;i<g.length;i++){
			g[i].style.visibility=h;}
		}
	}
}