function showGlobalLoginThankYou()
{
	var strThankYouHTML;

	if (typeof(mxlightbox) != 'function')
	{
		strThankYouHTML = '<script type="text/javascript" src="/js/lib/plugins/jquery.mxlightbox.js"></scr' + 'ipt>';
	}

strThankYouHTML += '<div class="mx-glStatementContainerHorizontal">' +
'<div class="lb-column1"><div class="mx-glBodyText">' +
'<img src="/images/my-account/mx-glThankYouHeader.png" alt="Moneyextra.com" />' +
'<p class="lightbox-p">Thanks for submitting your details, in order to serve you better we have stored them for you which allows you to:</p>' +
'<ul class="lightbox-list">' +
'<li>Speak to us if your application was not successful</li>' +
'<li>Speak to us if the service wasn&rsquo;t up to standard</li>' +
'<li>Quickly make another application if needed</li>' +
'<li class="mx-noLineHeight">No need to fill in your information again if you want to apply for another product</li>' +
'</ul>' +
'<div class="mx-glGo">' +
'<a href="javascript: void(0);" id="mx-glGoButton"><img src="/images/genesis/buttons/mx-button-go.png" alt="Go" width="99" height="23" /></a>' +
'</div>' +
'</div>' +
'</div>' +
'<div class="lb-column2"><div class="mx-glDataStatement">' +
'<img src="/images/genesis/mx-lightbox-legal-txt.jpg" border="0" alt="Data Protection Information" />' +
'<p style="lightbox-text-2">For more information please see our <br /> <a href="/legal/privacy/">Privacy Policy</a> and our <a href="/legal/terms.php">Terms of Use</a>.</p>' +
'</div></div>' +
'<div style="clear: both;"></div>';

//var strYourDataHTML = '<div id="mx-glStatementContainerUserData" style="float: left; width: 400px;">' +
//							'<h1>The data we\'ve saved for you from this application is:</h1';

//~ jQuery.each(objUserData,
	//~ function()
	//~ {
		//~ if (this.name.substr(0, 10) != '_IsSubmit_')
		//~ {
			//~ strYourDataHTML += '<p>' + arrFieldLabelMap[this.name.replace('[]', '')] + ': ' + this.value + '</p>';
		//~ }
	//~ }
//~ );

//strYourDataHTML += '</div>';

var strLightBoxHTML = '<div id="mx-LightBoxWrapper">' +
							'<div id="mx-LightBoxInnerWrapper">' +
								'<div id="mx-LightBoxInnerMiddle" class="mx-general-box" style="background:#efefef; border: solid 1px #333;">' +
									strThankYouHTML +
								'</div>' +
							'</div>' +
					  '</div>';

$('body').prepend(strLightBoxHTML);

$('#mx-LightBoxWrapper').mxlightbox();

$('#mx-glGoButton').click(
	function()
	{
		$('#mx-LightBoxWrapper').mxlightbox('destroy');
	}
);

}
