var loadingGraphic2mini = '<img src="/skins/default/imgs/common/loader_macish.gif" alt="loading" style="width: 12px; height: 12px;"/>';


function saveRating(curvalue, elToRate, ratingFilmID){

	var xmlHttp=getXmlHttpObject()

	xmlHttp.onreadystatechange = function(){

		el	= document.getElementById(elToRate + '_success');
		el2	= document.getElementById('overall' + elToRate);
  	if(xmlHttp.readyState == 4){
			var myKey = "error";
			var myStringVar = xmlHttp.responseText.toString();
			var myMatch = myStringVar.search(myKey);

			if (myStringVar.indexOf(myKey) == '-1') {
				if (el) {
					el.innerHTML = 'saved';

					if(el2)
					{
						el2.innerHTML = myStringVar + "/5";
					}
				}
			}

    }else{

			if (el) {
				el.innerHTML = loadingGraphic2mini;
			}

		}
  }

	var url = siteURL + '/films/rate';

	//alert(curvalue + '|' + elToRate + '|' + ratingFilmID);

	xmlHttp.open("POST",url,true);
	xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
	xmlHttp.send('type=' + encodeURI(ratingType) + '&filmID=' + encodeURI(ratingFilmID) + '&vote=' + encodeURI(curvalue));

}
