// Begin
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Jeremy Keith :: http://www.adactio.com/ */

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-1024")) {
      links[i].onclick=function() {
        // Below - to open a full-sized window, just use: window.open(this.href);
        window.open(this.href, "", "location=no, scrollbars=yes, menubar=no, toolbars=yes, resizable=yes,top=40,left=40,width=1015,height=660");
        return false;
      }
    }
  }
}
window.onload=doPopups;

// End -->