function updateStarRatingBar(id, value,textshown)
    {
    var elementID;
    elementID = "xsr" + id;       

    if (readStarRatingCookie(id) == null)
    {
    
    
        url = "/base/StarRating/update/"+id+"/"+value+".aspx";
       // alert(elementID);
       
       	    try{
                req = new XMLHttpRequest();
            }
            catch (e)
            {
                req = new ActiveXObject("Microsoft.XMLHTTP");            
            }
            req.open("GET", url, true);
            req.send(null);                
           
             rateBar = document.getElementById(elementID);
             rateBar.style.width = value*20 +"%";
           
           
           createStarRatingCookie(id,value,100);
           if(textshown == 1)
           {
            rateText = document.getElementById(elementID +'ratingtext'); 
           
            rateText.innerHTML = "Thank you for your rating!";
           }
           
      } 
      else {
            rateText = document.getElementById(elementID +'ratingtext');
            rateText.innerHTML = "You have already rated this cliche!";
      }
}
    
    
function createStarRatingCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readStarRatingCookie(name) {

	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

