<!--
function confirmMsg(msgno) {
    var msg;

    switch(msgno) {
    case 1:
	msg = "This will show all images in full-sized view.\nThe loading may take quite a while.\nIs it OK to continue?";
	break;
    default:
        return true;
    }
    return confirm(msg);
}
//-->
