var popupWindow = null;

function popup(url, width, height) {
	if (popupWindow != null) {
		if (!popupWindow.closed) {
			popupWindow.close();
		}
	}

	var top = 100;
	var left = ((screen.width-width)/2)-13;
	var options = "resizable=no,toolbar=no,location=no,scrollbars=yes,menubar=no,status=no,width="+width+",height="+height+",top="+top+",left="+left;

	popupWindow = window.open(url, "Popup", options);
	popupWindow.focus();
}

