// Calculate the rating
function fratings(id){



var loadratings = document.getElementById('ratings_'+id);

/*loadratings.innerHTML = "http://tva.com.mx/star_rating/pages/vot"+id+".html";	
*/

	xmlHttp2 = GetXmlHttpObject()
	if(xmlHttp2 == null){		alert ("tu navegador no soporta AJAX!");		return;	  }
	//--else{ alert(xmlHttp2.readyState); }


	xmlHttp2.open("GET", "http://www.eluniversaltv.com.mx/star_rating/pages/vot"+id+".html",true);
	xmlHttp2.setRequestHeader( "If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT" );
	xmlHttp2.onreadystatechange = function(){
	if (xmlHttp2.readyState == 4){ 
	  loadratings.innerHTML = xmlHttp2.responseText;
  }
	}
	xmlHttp2.send(''); 
	
	

} 