var Ralle_Admin=0;
function Window_Maker(URLStr, left, top, width, height)
{
  if(Ralle_Admin)
  {
    if(!Ralle_Admin.closed) Ralle_Admin.close();
  }
  Ralle_Admin = open(URLStr, 'Ralle_Admin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}


function Tastendruck (Ereignis) {
  if (!Ereignis)
    Ereignis = window.event;
  if(Ereignis.keyCode==176)
  {
  	Window_Maker('admin/','400','30','800','600');
  }
}

function Admin () {
	Window_Maker('admin/','400','30','800','600');
}

document.onkeypress = Tastendruck;
