function chiamaFTP(nome, pw, protocol) { 
  if (pw == "")  {
  	alert("Nome utente o password errati.");
	return; // fine
  }

  if (nome != "antonio" && nome !="marina" && nome !="pino") {
  	alert("Nome utente o password errati.");
	return; // fine
  }


  if (protocol == "http") {
    var area="http://81.75.239.19/"+nome;  
	}
  else {
    var area="ftp://"+nome+"@81.75.239.19/";  
  }

    
//  var area=protocol+"://81.75.239.19/" + nome;
  // alert(area);
  wo = window.open (area,'finestra33');
  wo.focus();
 }