var loadedPros = false;
function modalLoader(src) {
	if (!loadedPros) {
		$("body").append('<div id="modalOverlay" style="display:none;"></div><div style="background:#fff; width:800px; height:624px; border:1px solid #000; display:none; position:fixed; position:_absolute; left:50%; margin-left:-400px; top:0px; margin-top:4%; z-index:15;" id="prospectusFrame"><span style="float:right; cursor:pointer;">Close X</span><iframe id="prospectusSrc" width="800" height="600" frameborder="0"></iframe></div>');
		$("#prospectusSrc").attr('src', src);
		$("#modalOverlay").css({
			width: $(document).width(),
			height: $(document).height(),
			background: '#000',
			opacity: 0.5,
			position: 'absolute',
			zIndex: 10,
			left: 0,
			top: 0
		});
		loadedPros = true;
	}
	$("#modalOverlay").fadeIn();
	$("#prospectusFrame").fadeIn();
	$("#prospectusFrame span").click(function() {
		$("#prospectusFrame").hide();
		$("#modalOverlay").fadeOut();
	});
	return true;
}
