var timer = false;
var pressed = 0

function admin() {
  window.open('login.php', 'sitesparkle_admin', 'width=500,height=500,status=yes,toolbar=no,menubar=no,location=no,resizable=yes');
}

function checkKey() {
  if(pressed > 2) {
    admin();
  }
  pressed = 0;
  timer = false;
}

function keyHandler(e) {
  if(document.layers) {
    key = e.which;
  } else {
    key = window.event.keyCode;
  }
  if(key == 27) {
    pressed = pressed + 1;
    if(!timer) {
      timer = true;
      setTimeout('checkKey();', 1000);
    }
  }
}

function imagePopUp(id, title) {
  window.open('imagepopup.php?id=' + id, 'imagepopup', 'width=300,height=300,status=no,toolbar=no,menubar=no,location=no,resizable=no');
}

document.onkeypress = keyHandler;

