// JavaScript Document
function doPopups() {
  if (!document.getElementsByTagName) return false;
  var links=document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match("popup")) {
      links[i].onclick=function() {
      // Next two lines should be on one line
        window.open(this.href, "",
          "top=50,left=50,width=900,height=700,scrollbars=1,menubar=1,location=1,resizable=1,menubar=1,toolbar=1");
        return false;
      }
    }
  }
}
window.onload=doPopups;