function onValidComment()
{
	formTrim(document.new_comment.text_comment);
	
	if (document.new_comment.text_comment.value.length < 1)
  {
		alert("Du måste skriva något i ditt meddelande.");
		document.new_comment.text_comment.focus();
		return false;
	}

	return true;
}


function doUpdateComment(tid, cid)
{
	window.location='news.php?text=' + tid + '&comment=' + cid + '&action=update_comment#comment';
}


function doRemoveComment(tid, cid)
{
	if (window.confirm('Är du säker på att du vill ta bort kommenteren?'))
  {
    window.location='news.php?text=' + tid + '&comment=' + cid + '&action=remove_comment#comment';
  }
}	
