function ShowAccountMessageIfRequired( sSpanID )
{

	//
	//  Return true if current page URL contains PageAction=LOGIN
	//

	var sURL = window.location.href.toLowerCase();
	var iIsLogin = sURL.indexOf("pageaction=login");
	
	if ( iIsLogin >= 0 )
	{
		var oDocSpan = document.getElementById( sSpanID );
		if ( oDocSpan != null )
		{
			oDocSpan.style.display = "";
		}
	}
}
