// Full-screen //

try {
  window.moveTo(0, 0);
  window.resizeTo(screen.availWidth, screen.availHeight);
}
catch(e) {
  alert(e);
}

