function entra(str){
	document.getElementById(str).value="1";
	document.getElementById('f1').submit();
}

function SubmitForm(Indirizzo) {
	MioForm = document.getElementById('f1') ;
	MioForm.action = "http://" + Indirizzo ;
	MioForm.submit() ;
}