window.onload = closer_install;

function closer_install() {
  if( document.createElement && document.getElementsByTagName ) {
    /*  PREPARE TRIGGERS  */
    var e = document.getElementById('shut');
    e.onclick = closePopup; 
  }
}

function closePopup() {
  self.close();
}
