var scoreFlag = 1;
var priceFlag = 1;

function updateData(){
	eval(document.getElementById("scriptData").innerHTML)
}

function clickStars(starId, starNo){
	if (starId == 'score') {
		scoreFlag = 1;
		scorePoint = starNo;
		document.editForm.frm_score.value = starNo;
	}
	if (starId == 'price') {
		priceFlag = 1;
		pricePoint = starNo;
		document.editForm.frm_price.value = starNo;
	}
	colorStars(starId, starNo);
	if (starId == 'score') scoreFlag = 0;
	if (starId == 'price') priceFlag = 0;

}

function colorStars(starId, starNo){
	//if (starId == 'score' && scoreFlag == 0) return;
	//if (starId == 'price' && priceFlag == 0) return;

	for(i=1; i<= 5; i++) {
		var star = document.getElementById(starId + i)
		star.src = "/images/star_0.gif"
	}
	for(i=1; i<= starNo; i++) {
		var star = document.getElementById(starId + i)
		star.src = "/images/star_1.gif"
	}
}

function checkForm(frm){
	return(
		isText(frm.frm_comment, "Yorum")
	)
}