
var imgWindow = null;
function showImage(url, caption) {
	if (imgWindow) {
		imgWindow.close();
	}
	imgWindow = window.open(url, "Image", "width=420,height=520,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no");
	imgWindow.document.write("<html><head><link rel='stylesheet' href='../styles.css' /><title>Image</title></head><body><img src='" + url + "' /><p>" + caption + "</p><p align='center'><a href='javascript:window.close();'>Close window</a></body></html>");
	imgWindow.document.close();
}

