function ClickMark(i)
{
        document.FormVote.RMark.value = i;
}


function checkVote(strNameFile)
{
	
	if (document.FormVote.RMark.value == null ) {
		alert("Choose a mark!");
		return;
	}

 	document.location.href= strNameFile + ".asp?action=vote";

}

function checkComm()
{
	if (document.FormComm.Name.value == "" ) {
		alert("Enter your name!");
		return;
	}

	if (document.FormComm.Comment.value == "" ) {
		alert("Enter your comment!");
		return;
	}

 	document.location.href="articles.asp?action=addcom";
}


