
	function vote(Page, PostId, CommentId, value)
	{
		var commentDiv = $('CommentRating_'+CommentId);

		new Request( {
			url: Page,
			data: 'PostId='+PostId+'&CommentId='+CommentId+'&voteType='+value,
			method: 'post',
			onSuccess: function(msg) {   commentDiv.set('html', msg);  },
			onFailure: function( msg ) { alert( msg + 1 ); }
		}).send();
	}
	
	
	