
	var primo = true;
	
	function cancella(){
		
		if (primo){
			var txtUser = document.getElementById('fld1o');
			txtUser.value="";
			primo = false;
		}
	}
	
	function txt2pwd (){
		
		var testo = document.getElementById('fld68z');
		var passw = document.getElementById('fld2o');
		//testo.style.visibility = 'hidden';
		//passw.style.visibility = 'visible';
		testo.style.display = 'none';
		passw.style.display = 'block';
		passw.focus();
	}