$(document).ready(function() {
	$("div.contentBox a").click(function() {
		if(this.title == 'popper') {
			var mylink = this.href;
			var img = new Image();
				img.onload = function() {
					bob = window.open(mylink,'myWindow','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width=' + (img.width + 20) + ',height=' + (img.height + 20));
					bob.focus();
				}
				img.src = mylink;
			return false;
		} 
										 });	
});