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;
}
}
That could work. So I would just attach that function to the onkeypress?