function ImageBox_6_onMouseOut() {
changeVisibility("ImageBox_6", 1, false);
changeVisibility("ImageBox_7", 0, false);
changeVisibility("ImageBox_8", 0, false);
changeVisibility("ImageBox_9", 0, false);
changeVisibility("ImageBox_10", 0, false);
setGlobalCursor("default");

}
addHandler(document.getElementById("ImageBox_6"), "mouseout", ImageBox_6_onMouseOut);
function ImageBox_6_onMouseOver() {
setGlobalCursor("pointer");
if (window.confirm("Are you sure you want to give a poor 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_6"), "mouseover", ImageBox_6_onMouseOver);

