

	function keepsectionname(){
		var  myurl=document.location.href ;
		lastslash=myurl.lastIndexOf("/");
		lastsecond=myurl.lastIndexOf("/", lastslash-1);
		myurl=myurl.substring(lastsecond+1,lastslash);
		for (var i=0; i<document.gosections.Sections.length ; i++){
			if (document.gosections.Sections.options[i].value.indexOf(myurl)>1)
				document.gosections.Sections.options[i].selected=true;
		}
	}
	
	function Navigate()
	{
		
		var list = document.gosections.Sections
		var listValue = list.options[list.selectedIndex].value
		
		//alert(document.F1.Ontario.value)
		document.location.href = listValue
	}
		

