function postComment()
{
	window.open(document.pcmt.action,'commentWin','hotkeys=no,height=325,width=450,toolbar=no,status=no,titlebar=no,resizeable=no,dependent=yes');
}

function validateComment()
{
	if (document.comment['cmt[name]'].value == '')
	{
		alert ('Вы не заполнили поле "Имя"!');
		return false;
	}
	else if (document.comment['cmt[e_mail]'].value == '')
	{
		alert ('Вы не заполнили поле "E-mail"!');
		return false;
	}
	else if (document.comment['cmt[message]'].value == '')
	{
		alert ('Вы не заполнили поле "Комментарий"!');
		return false;
	}

	return true;
}

function bbCode(tag)
{
	document.comment['cmt[message]'].value += ('[' + tag + ']' + '[/' + tag + ']');
}
