<!--
function checklogin()
{
	var controllo = false;
	var Avatar = -1;

	if (document.login.nickname.value == "" )
	{
		controllo=true;
		alert("Attenzione: Devi specificare un Nickname!");
	}
	else
	{
		for (counter=0; counter < document.login.avatar.length; counter++) {
			if (document.login.avatar[counter].checked)
			{
				Avatar = counter
			}
		}
		if (Avatar == -1)
		{
			controllo=true;
			alert("Attenzione: E' obbligatorio selezionare un Avatar!");
		}
	}					
	if (controllo) { return false }else{ return true }	
}

function sendmsg()
{
	document.forms["mymsg"].submit();
	document.forms["mymsg"].reset();
}

function nosubmit()
{
	alert("Per inviare il messaggio clicca sul bottone");
	return false;
}

function sure2exit(chat_id)
{
	document.location.href='chat.php?chat_id=' + chat_id + '&act=sure2exit';
}

function exit(chat_id)
{
	document.location.href='chat.php?chat_id=' + chat_id + '&act=exit';
}
//-->
