﻿function select_vote(num) {
	var uservote=num;
	for (i=1;i<=5;i++) {
		objname='vote_'+i;
		var imgshow=(i<=num) ? 'star2.gif':'star0.gif';
		src =  ROOT+"modules/product/images/"+imgshow;
		$("#"+objname).attr("src", src); 
	}	
	
  //$('.validate').filter('.error').css('background-color', 'red');
 	
	$('#hvote').val(num);
	
}


function load_image(src)
{ 
	var subImages = document.getElementById('divImage').getElementsByTagName('IMG');
		if(subImages.length==0){
			var img = document.createElement('IMG');
			document.getElementById('divImage').appendChild(img);			
		}else img = subImages[0];
		
		img.src = src;

}
 
/*COMMENT*/
 
function show_comment(id,lang,p) {
	
	$.ajax({
		 type: "GET",
		 url: ROOT+'modules/product/ajax/_show_comment.php',
		 data: "id="+id+'&lang='+lang+'&p='+p,
		 success: function(html){
			  $("#ext_comment").html(html);
		 }
	 });
}

