// Overwriting JavaScript Function for other languages than EN

// url selector for left navigation at the start page
FormListener={
	init:function(){
		var select1=document.getElementById("nav_input1");
		var select2=document.getElementById("nav_input2");
		var select3=document.getElementById("nav_input3");

		if(select1) {
			select1.onchange=function() {
				if(select1.selectedIndex!=0) {
					top.location.href=select1.options[select1.selectedIndex].value;
				}
			}
		}

		if(select2) {
			select2.onchange=function() {
				if(select2.selectedIndex!=0) {
					top.location.href=select2.options[select2.selectedIndex].value;
				}
			}
		}

		if(select3) {
			select3.onchange=function() {
				if(select3.selectedIndex!=0) {
					//top.location.href=select3.options[select3.selectedIndex].value;
					var url = "http://www.atlas-mts.com" + select3.options[select3.selectedIndex].value;
					window.open(url, 'standards');
				}
			}
		}
	}
}