//called when person clicks on thumbs up/down
function thumbclick(sDirection, iCommentID) {
	var oDiv = document.getElementById('div_thumbs_' + iCommentID)
	var iStar = 1
	if (sDirection == 'up') iStar = 5
	oDiv.innerHTML = '<iframe name="rating" frameborder="0" scrolling="no" style="width:40px;height:40px" src="/community/vote/save_rating.asp?type=0&id=' + iCommentID + '&star=' + iStar + '"></iframe>' //ITEM_COMMENT
}

