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, "popup", "scrollbars=1,resizable=1,toolbar=0,location=0,menubar=0,directories=0,width=400,height=370");
        return false;
      }
    }
	
    if (links[i].className.match("popup2")) {
      links[i].onclick=function() {
      // Next two lines should be on one line
        window.open(this.href, "popup2", "resizable=yes,width=640,height=450");
        return false;
      }
    }	
  }
}
window.onload=doPopups;
