//
function movieLinks() {
  if (!document.getElementsByTagName) return false;
  var links=document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match("movielink")) {
      links[i].onclick=function() {
        // Below - to open a full-sized window, just use: window.open(this.href);
        window.open(this.href, "", ",,width=340,height=370,no");
        return false;
      }
    }
  }
}

{
window.onload=movieLinks;
}




