//------------------------------------------------------------------
//Ctrl+Shift+A für Admin-Bereich
//------------------------------------------------------------------
function tastendruck(evt)
  {
  if(!evt)
    {
	evt																= window.event;
	}
  if(!document.all || (op7))
    {
	tastencode														= evt.which;
	kc_speichern													= 65;
	}
  else
    {
	tastencode														= evt.keyCode;
	kc_speichern													= 1;
	}
  
  //speichern
  if(evt.ctrlKey && evt.shiftKey && tastencode == kc_speichern)
    {
	document.location												= 'http://'+document.location.hostname+JS_rb+'admin/index.php';
	}
  }
document.onkeypress = tastendruck;
