Adam: mattsmac, You can disable Ctrl+B using javascript. For example: function notAllowed (e) { // Disable Ctrl+B if ( (66== event.keyCode) && (event.ctrlKey) ) { alert ("Sorry, not allowed!"); event.returnValue = false; } }