\n'); } // Function to handle when the user right clicks on the shield function userRightClicked() { // Advance the slide window.cp.SetVariable("rdcmndNextSlide","1"); // Get rid of the shield document.getElementById("shield").style.display = "none"; // Return to normal functionality document.oncontextmenu = null; return false; } function rightClickToAdvance(){ // Enable the shield document.getElementById("shield").style.display = "inline"; document.oncontextmenu = userRightClicked; } //-->
