			function TJKpopFolder(){ // v1.0 | www.TJKDesign.com
			  var e = document.getElementById('content');
			  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("VIDEO") >= 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,toolbar=no,width=500,height=475');if(window.focus){newWin.focus()} return false;}
				  }
				}
			  }
			}
			window.onload = function(){if(document.getElementById) TJKpopFolder();}