


var stsConsumer= new function(){}

function loginHelp(){
	var body="<div class='whyCantILogIn' style='padding:5px 5px 5px 5px;'>If you are having trouble logging in, please check that you have done the following:<ul style='margin-left:7px;list-style:circle inside none;'>"+
		"<li>Make sure you have already <a href='/registration'>registered</a> in the site.</li>"+
		"<li>Make sure you have verified your email address by clicking on the link in your welcome email after registering.</li>"+
		"<li>If you didn't receive an email, you can resend your welcome email through the  <a href='/registration'>registration center</a>.</li>"+
		"<li>You can also try resetting your password in the <a href='/registration'>registration center</a>.</li>"+
		"</ul></div>";
	stsConsumer.loginHelpWin=	new Ext.Window({
		 title:"Why can't I log in?"
		,html:	body
		,width:"700"
		,buttons:[
			{	 text:"Close"
				,scope:stsConsumer
				,handler:function(){stsConsumer.loginHelpWin.close()}
			}
		]
	});
		stsConsumer.loginHelpWin.show();
}


