// Shortcut keys
function gotoURL(event) {
  if (event) {
    if (event.keyCode==27) {document.location.href='http://www.ffme.info';} // Esc
    if (event.keyCode==9) {document.location.href='http://webmail.charlaixscalade.com';} // Tab
    if (event.keyCode==45) {document.location.href='http://www.charlaixscalade.com/docman';} // Ins
    // F1-F12 : 112-123
    if (event.keyCode==121) {document.location.href='http://www.charlaixscalade.com/index.html?rubrique=admin';} // F10
    if (event.keyCode==123) {document.location.href='http://admin.charlaixscalade.com';} // F12
  }
}
document.onkeypress=gotoURL;
