<
function showPhotobar (what) {
document.getElementById("photobar").className = "photobar"+" "+"hover";
if (document.getElementById("photobarleft")) document.getElementById("photobarleft").className = "fl"+" "+"hover";
if (document.getElementById("photobarright")) document.getElementById("photobarright").className = "fr"+" "+"hover";
document.getElementById("ratingnumber").style.display = "inline";
}
function hidePhotobar (what) {
document.getElementById("photobar").className = "photobar";
if (document.getElementById("photobarleft")) document.getElementById("photobarleft").className = "fl";
if (document.getElementById("photobarright")) document.getElementById("photobarright").className = "fr";
document.getElementById("ratingnumber").style.display = "none";
}