function ImageBox_8_onMouseOut() {
changeVisibility("ImageBox_6", 1, false);
changeVisibility("ImageBox_7", 1, false);
changeVisibility("ImageBox_8", 1, false);
changeVisibility("ImageBox_9", 0, false);
changeVisibility("ImageBox_10", 0, false);
setGlobalCursor("default");

}
addHandler(document.getElementById("ImageBox_8"), "mouseout", ImageBox_8_onMouseOut);
function ImageBox_8_onMouseOver() {
setGlobalCursor("pointer");
if (window.confirm("Are you sure you want to give a neutral rating?")) {
try {
window.alert("Thank You");
} catch (err) {
window.alert('"Thank You"');
}
} else {
changeVisibility("ImageBox_6", 0, false);
changeVisibility("ImageBox_7", 0, false);
changeVisibility("ImageBox_8", 0, false);
changeVisibility("ImageBox_9", 0, false);
changeVisibility("ImageBox_10", 0, false);

}
}
addHandler(document.getElementById("ImageBox_8"), "mouseover", ImageBox_8_onMouseOver);

