// JavaScript Document
// Popup Windows for Images
function Popup(url, w, h) {
		x = (screen.width - w) / 2 - 100;
		y = (screen.height - h) / 2 - 100;
	window.open(url, "Image", "width=" + w + ",height=" + h + ",top=" + y + ",left=" + x);
}