<!--
function doPopups() {
   // check to see if the property is available
   if (!document.getElementsByTagName) return false;
   // assign the "link" variable to the "a" HTML element
   var links=document.getElementsByTagName("a");
   // be sure to change the "<" below to just "<"
   for (var i=0; i < links.length; i++) {
   // check to see if the link has a class name of "popup"
   if (links[i].className.match("popup")) {links[i].onclick=function() {
   // set-up the popup window (should all be on one line)
   // to open a full-sized window, just use: window.open(this.href)
   window.open(this.href,6,'top=40,left=40,width=450,height=450,directories=no,location=no,menubar=no,status=no,toolbar=no,scrollbars=yes');
   // stop the regular "href" link from also opening if JavaScript is enabled
   return false;
       }
     }
   }
}
  // loads the function above after the page loads
  window.onload=doPopups;
 //-->