function record_product_helpful_vote(part_number, rating_id, comment_id, vote, key){
	if(document.getElementById('review_helpful_' + part_number + '_' + rating_id)){
		document.getElementById('review_helpful_' + part_number + '_' + rating_id).innerHTML = "<img src='/tools/review_helpful_vote_collector/collect_vote.php?part_number=" + part_number + "&rating_id=" + rating_id + "&comment_id=" + comment_id + "&vote=" + vote + "&key=" + key + "'>";
		/*
			alert("/tools/review_helpful_vote_collector/collect_vote.php?part_number=" + part_number + "&rating_id=" + rating_id + "&comment_id=" + comment_id + "&vote=" + vote + "&key=" + key);
		*/
		return true;
	}
	return false;
}