function comment(hash) {
	newcmttxt = document.addcomment.bericht.value;
	newcmtname = document.addcomment.naam.value;
	document.getElementById('submitform').innerHTML = '';
	var post_str = 'c=' + escape(encodeURI(newcmttxt)) + '&n=' + escape(encodeURI(newcmtname));
	doRequest('http://www.101.tv/scripts/666/comments.php?h=' + hash + '&' + post_str, 2);
}

function hiLite(getal) {
	for (z=1;z<(getal+1);z++) {
		document.getElementById('star'+z).src = '/static/images/barz3/star_on.png';
	}
	for (x=(getal+1);x<6;x++) {
		document.getElementById('star'+x).src = '/static/images/barz3/star_off.png';
	}
}

function voteVideo(stars,hash) {
	doRequest('http://www.101.tv/scripts/barz3/ajax.vote.php?v=' + (stars*20) + '&hash=' + hash,1);
}