function check_user() {
var nome = $('nome').value;
if (nome != '') {
	form_input = 'nome=' + nome;
	ajax_post('check_user.php', form_input, Progress_prim_list, response_check_user);
	}
}

function response_check_user() {
read_data = eval('(' + http_request.responseText + ')');
	if (read_data['id_utente'] > 0) {
	var alertmsg = '<strong>Attenzione! Esiste già un altro utente con questo nome. Scegline uno nuovo.</strong>';
		$('alertmsg').innerHTML = alertmsg;
		ok_nome = 0;
	} else {
		ok_nome = 1;
		$('alertmsg').innerHTML = '';
		if (ok_nome == 1 && ok_posizione == 1) {$('inviobtn').disabled = false;}
	}
}

function Progress_prim_list() {}

function check_testo() {
if (document.modulo.areatesto.value.length == 0) {
		$('areatestomsg').innerHTML = '<p><strong>ATTENZIONE! hai laciato vuoto il messaggio di presentazione. Non è obbligatorio scrivere qualcosa, ma ricordati che questa mappa è stata costruita per facilitare le relazioni reali, di persona quindi, tra gli iscritti. Il messaggio è allora molto importante per dare una prima presentazione di te.</strong></p>';
	} else {
		$('areatestomsg').innerHTML = '';
	}

}