if (document.getElementById && document.getElementsByTagName) {
	var anchors = document.getElementsByTagName('A');
	for (var i=0; i<anchors.length; i++){
		if (anchors[i].className == 'popupImage'){
			anchors[i].onclick = function(){
				this.blur();
				var popupImage = window.open('','popupImage','width=600,height=408,menubar=0,toolbar=0,location=0,directories=0,status=0,resizable=1,scrollbars=0');
				popupImage.document.write(
					'<html><head>'+
					'<title>'+this.innerHTML+'</title>'+
					'</head><body>'+
					'<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"><tr><td align="center" valign="middle">'+
					'<img src="'+this.href+'" title="click here to close" id="popupImage" />'+
					'</td></tr></table>'+
					'</body></html>'
				);
				popupImage.document.getElementById('popupImage').onload = function(){
					popupImage.resizeTo(this.width+100,this.height+100);
				};
				popupImage.document.getElementById('popupImage').onclick = function(){
					popupImage.close();
				};
				popupImage.document.body.style.margin='0';
				popupImage.document.body.style.background='black';
				popupImage.document.getElementById('popupImage').style.border='1px solid white';
				popupImage.document.close();
				popupImage.focus();
				return false;
			};
		}
	}
}