var loadingGraphic2mini = '<img src="' + imgDir + '/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');

  	if(xmlHttp.readyState == 4){

			if (xmlHttp.responseText == 'success') {
				if (el) {
					el.innerHTML = 'saved';
				}
			}

    }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));

}