He.Bootstrap('He.Application.Index');
He.RequireComponent('He.Components.ConfirmDialog.clientside');

He.Application.Index.PopUp = function()
{
	if(
		(
			He.Framework.Nav.IsSolid(document.location.href) ||
			document.location.hash == '#/index/' ||
			document.location.hash == '#/index'
		) &&
		!He.GetStrObject('He.Application.Common.UserProfileId')
	){
		var win = He.Components.GenDialog.LoadModal('','/about_popup.php',null,null,{'width':850,'height':500});
		document.observe("clickedlink:before",function()
		{
			win.close();
			Event.stopObserving(document,"clickedlink:before",this);
		});
	}
};


