GBC_ShowCenterReload = function(caption, url, width, height, callback_fn) {
	var options = {
		reload_on_close: true,
		center_win: true,
		caption: caption,
		height: height,
		width: width,
		callback_fn: callback_fn
	}
	var win = new GB_Window(options);
	return win.show(url);
}
