/* @requires thickbox */
function showStayInformedPopup(config) {
	/**
	 * @config url required {String}
	 * @config title {String}
	 * @config width {Numeric} - Default 420
	 * @config width {Height} - Default 400
	 */
	if(config.url == undefined) {
		config.url = "/stay-informed.cfm";
	}
	if(config.title == undefined) {
		config.title = "Stay Informed";
	}
	if (config.width == undefined) {
		config.width = 491;
	}
	if (config.height == undefined) {
		config.height = 400;
	}
	/* Make sure there is a ? on the url so I can append some more paramaters. */
	if (config.url.indexOf("?") == -1) {
		config.url += "?dummyValue=1";
	}
	
	tb_show(config.title, config.url + "&modal=true&TB_iframe=true&width=" + config.width + "&height=" + config.height);
};
