var t;
function $(id) {
  return document.getElementById(id);
}
function on(id) {
  clearTimeout(t);
  $(id).style.display='block';
}
function off() {
  $('almenu').style.display='none';
}
function cl() {
  t=setTimeout("off()",500);
}

function check() {
  var browser=navigator.appName;
  if(browser=="Microsoft Internet Explorer") {
    $('map').style.position='absolute';
    $('copy').style.position='absolute';
    var h = document.body.clientHeight;
    var w = document.body.clientWidth;
    $('map').style.left=w/2-451 + 'px';
    $('map').style.top=h/2-252 + 'px';
    $('copy').style.left=w/2-120 + 'px';
    $('copy').style.top=h/2+260 + 'px';
  }
}
