// Keys to be disabled can be added to the lists below.
// The number is the key code for the particular key
// and the text is the description displayed in the
// status window if the key [combination] is pressed.

var badKeys = new Object();
badKeys.single = new Object();
badKeys.single['116'] = 'F5';
badKeys.single['114'] = 'F3';

badKeys.alt = new Object();
badKeys.alt['37'] = 'Alt+Lewy przycisk';
badKeys.alt['39'] = 'Alt+Prawy przycisk';

badKeys.ctrl = new Object();
badKeys.ctrl['78'] = 'Ctrl+N';
badKeys.ctrl['79'] = 'Ctrl+O';
badKeys.ctrl['82'] = 'Ctrl+R';
badKeys.ctrl['87'] = 'Ctrl+W';
badKeys.ctrl['72'] = 'Ctrl+H';
badKeys.ctrl['66'] = 'Ctrl+B';
badKeys.ctrl['76'] = 'Ctrl+L';
badKeys.ctrl['68'] = 'Ctrl+D';
badKeys.ctrl['69'] = 'Ctrl+E';
badKeys.ctrl['73'] = 'Ctrl+I';
badKeys.ctrl['116'] = 'Ctrl+F5';


