var isNeedToConfirm = true;
window.onbeforeunload = confirmExit; 
  
function confirmExit() {
    if(isNeedToConfirm) {
    	return "To exit please click top left File/Exit. This will give you important information.";
	}
}

function exit() {
    isNeedToConfirm = false;
    // top.close();
    window.location.href = "/"
}

function showVideo() {
    video_win = window.open("http://www.aopreopplanner.org/preop/help/video/start_preopplaning.html", "Video", "width=950,height=700,scrollbars=no,menubar=no,location=no,resizable=no,status=no,toolbar=no");
    video_win.focus();
}
