function addComment(user)
{
if (!user || user==undefined)
	{
	var modal = modalWindow(dirHost+'account/pleaseLogIn',350,170);
	}
	else
	{
	showHideBox('addCommentBox');
	}
}


function validateEditCommentForm(thisform)
{
	with (thisform)
	{	
	if (emptyvalidation(commentDescription)==false) {commentDescription.focus(); return false;};
	}
}