/* $Id: script.js 2219 2007-02-13 20:34:49Z alambert $ */

function inlineChatCheck()
{
	if (document.forms.inline_chat.channel.value == '#lobby')
		return confirm('Please note that the lobby is a moderated, G-rated area intended for users of all ages.\n\nTo continue, click OK.\nTo select another room, click Cancel.');
	if (document.forms.inline_chat.channel.value == '#teenconnection')
		return confirm('WARNING\nOur teen area is a lively, lightly moderated chat area. We recommend that parents supervise use of this area.\n\nTo continue, click OK.\nTo select another room, click Cancel.');
	if (document.forms.inline_chat.channel.value == '__other__')
	{
		document.location.href = 'list.html';
		return false;
	}
	if ((document.forms.inline_chat.nickname.value == 'nickname') || (document.forms.inline_chat.nickname.value == ''))
		document.forms.inline_chat.nickname.value = prompt('Please enter a short nickname (no spaces):', 'Guest');

	return true;
}

function clearNickField()
{
	if (document.forms.inline_chat.nickname.value == 'nickname')
		document.forms.inline_chat.nickname.value = '';
	return true;
}
