function openWin() {
    open(this.href,'_blank','toolbar=1,location=1,status=1,top=25,left=25,resizable=1,scrollbars=1,width=500,height=400');
    return false;
}

window.onload = function() {
  if (typeof document.getElementsByTagName != 'undefined') {
     var allLinks = document.getElementsByTagName('a');
     for (var i=0; i<allLinks.length; i++) {
        if ((allLinks[i].href.match(/\.pdf/)) || (allLinks[i].className=='newwin')) allLinks[i].onclick = openWin;
     }  
  }
}