var wPhoto;
function LoadAlbumImage(oImg) {
	var img; var width = 640; var height = 480;
	if (window.addEventListener) {
		width = (oImg.getAttribute("width") * 1) + 15;
		height = (oImg.getAttribute("height") * 1) + 15;
	}
	if (wPhoto != null) { wPhoto.close(); }
	wPhoto = window.open(oImg.src, "wPhoto", "resizable=yes, width="+ width +", height="+ height);
}
