function TJKpopFolder(){ // v1.0 | www.TJKDesign.com
  var e = document.getElementById('cont');
  if (e){
    var a=e.getElementsByTagName('a');
    for (var i=0;i<a.length;i++){
    if (a[i].getAttribute('href') != null && a[i].getAttribute('href').toUpperCase().indexOf("BIGPIC") >= 0){
        a[i].className+=a[i].className?' popup':'popup';
        a[i].title+=' (opens in new window)';
        a[i].onclick=function(){newWin=window.open(this.href,'TJKWin','location=no,menubar=no,status=no,resizable=yes,toolbar=no,width=360,height=280');if(window.focus){newWin.focus()} return false;} // IE7 needs +40px or it shrinks img
      }
    }
  }
}
window.onload = function(){if(document.getElementById) TJKpopFolder();}
