// JavaScript Document
function cambia() {
	var dir=document.form1.lingua.value,location="";
//	if dir!="" {
		location="../"+dir+"/index.htm","_top";
		window.open(location,"_top");
//	}
//	else {
//	alert("si è verificata la condizione");}
}

function manage_data(lingua) {
	Height = 400;
	Width = 350;	
	LeftPosition = (screen.width-Width)/2;
	TopPosition = (screen.Height) ? (screen.Height-Height)/2 : 100;

  settings = 'height=' + Height + ',width=' + Width + ',top=' + TopPosition + ',left=' + LeftPosition + ',scrollbars=' + 1;	  
  if (lingua != null) //document.form1.lingua.value
  {
		//alert(lingua);	
		switch(lingua) //document.form1.lingua.value
		{
			case "it":
				form = window.open ("http://b2b.tinet.it/moletto/ProfiloUtente.asp?LINGUA=ITA", "profilo", settings);
				break;
			case "en":
				form = window.open ("http://b2b.tinet.it/moletto/ProfiloUtente.asp?LINGUA=ENG", "profilo", settings);
				break;
			case "de":
				form = window.open ("http://b2b.tinet.it/moletto/ProfiloUtente.asp?LINGUA=TED", "profilo", settings);
				break;  			
			default:
				form = window.open ("http://b2b.tinet.it/moletto/ProfiloUtente.asp?LINGUA=ITA", "profilo", settings);  			
		}	
	};
  
  form.focus();
}