function ratingloadurl(dest) {
	try {
		xmlhttp = window.XMLHttpRequest?new XMLHttpRequest():
		new ActiveXObject("Microsoft.XMLHTTP");
	}
	catch (e) {
		alert('No XMLHTTP support!');
	}
	xmlhttp.onreadystatechange = ratingTriggered;
	xmlhttp.open("GET", dest);
	xmlhttp.send(null);
}

function ratingTriggered() {
	if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
		document.getElementById("star-rating").innerHTML = xmlhttp.responseText;
	}
}