function ImageBox_10_onMouseOut() {
changeVisibility("ImageBox_6", 1, false);
changeVisibility("ImageBox_7", 1, false);
changeVisibility("ImageBox_8", 1, false);
changeVisibility("ImageBox_9", 1, false);
changeVisibility("ImageBox_10", 1, false);
setGlobalCursor("default");

}
addHandler(document.getElementById("ImageBox_10"), "mouseout", ImageBox_10_onMouseOut);
function ImageBox_10_onMouseOver() {
setGlobalCursor("pointer");
if (window.confirm("Are you sure you want to give an excellent 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_10"), "mouseover", ImageBox_10_onMouseOver);

