function imagePopup(image, title, width, height) {
	var left = ((screen.width - width) / 2);
	if (left <= 0) {
		left = 0;
	}
	var top = ((screen.height - height) / 2);
	if (top <= 0) {
		top = 0;
	}
	preferences = "width=" + width + ", height=" + height;
	preferences += ", left=" + left + ", top=" + top;
	preferences += ", location=no, menubar=no, resizable=no, scrollbars=no, status=no, toolbar=no";
	imageWindow = window.open("", "", preferences);
	imageWindow.document.write("<html>");
	imageWindow.document.write("<head>");
	imageWindow.document.write("<title>");
	imageWindow.document.write(title);
	imageWindow.document.write("<\/title>");
	imageWindow.document.write("<style type='text/css'>");
	imageWindow.document.write("body{margin:0px; border:0px; padding:0px;}");
	imageWindow.document.write("<\/style>");
	imageWindow.document.write("<\/head>");
	imageWindow.document.write("<body>");
	imageWindow.document.write("<img src= '" + image + "' alt='" + title + "' style='width:" + width + "px; height:" + height + "px; margin:0px; border:0px; padding:0px;' />");
	imageWindow.document.write("<\/body>");
	imageWindow.document.write("<\/html>");
	imageWindow.document.close();
}

function popup(url) {
	window.open(url);
}