function imagePopup(){
  if (!document.getElementById) return;

  var a = document.getElementsByTagName("a");
  for(var i = 0; i < a.length; i++){
    if(a[i].getAttribute("rel") == "screenshot"){
     a[i].onclick = function(){
      var file       = "image_popup.php?img="+this.getAttribute('href')+"&alt="+this.firstChild.getAttribute('alt')+"&title="+this.getAttribute('title');
      var name       = "screenshot";
      var properties = "directories=no,menubar=no,resizable=yes,scrollbars=no,toolbar=no,status=no,top=50,left=50";

      window.open(file,name,properties);
      return false;
     }
    }
  }
}

window.onload = function(){
 imagePopup();
}
