// ****** Rating Functions ********
var savedRating="0";
function saveRating(y) {
	document.RatingForm.Rating.value=y;
	savedRating=y;				
	swapStars(y);
}
function swapStars(z) {
	document.getElementById("StarMap").src="/images/ecommerce/stars-" + z +"-0.gif";
}
