function initPopups() {
	var els = document.getElementsByTagName("a");
	for(var i = 0; i < els.length; i++) {
		if (els[i].className.indexOf("popup") !=- 1) {
			els[i].onclick=popup;
		}
	}
}


function popup() {
	var img=new Image;
	img.src=this.href;
	img.onload=function () {
		var win=window.open(img.src, "popup", "width="+(img.width+20)+",height="+(img.height+20))
	};

return false; }
