function popup(page, width, height, options) {
	var top = (screen.height - height) / 2;
	var left = (screen.width - width) / 2;
	var options = "top=" + top + ", left = " + left + ", width = " + width + ", height = " + height + ", " + options;
	window.open(page, "", options);
}