/* dit is de js voor de sneltoetsen */

shortcut.add("Alt+S",function() {
	warning('shorts');
},{
	'type':'keyup',
	'disable_in_input':true,
	'propagate':true,
	'target':document
});

shortcut.add("Alt+L",function() {
	window.location='?p=login';
},{
	'type':'keyup',
	'disable_in_input':true,
	'propagate':true,
	'target':document
});

shortcut.add("Alt+H",function() {
	window.location='?p=home';
},{
	'type':'keyup',
	'disable_in_input':true,
	'propagate':true,
	'target':document
});