// wnd_forgotemail.js

//------------------------------------------	WND_ITMS: _wnd_forgotemail_itms
var _wnd_forgotemail_itms =
	[
	{id:"signin_welcome", type:"div", text:"Reset Password"},
	{id:"signin_welcline", type:"div"},
	{id:"forgotemail_txt", type:"div"},
	{id:"forgotemail_but_ok", type:"button", value:"OK", click:wnd_forgotemail_ok}
	];
//------------------------------------------	WND: _wnd_forgotemail
var _wnd_forgotemail =
	{
	transparent:true,
	id:"wnd_forgotemail",
	klass:"wnd_forgotemail",
	init:wnd_forgotemail_init,
	allowClones:false,
	itms:_wnd_forgotemail_itms,
	rect:{top:40, left:50, height:360, width:620}
	};
//------------------------------------------
function wnd_forgotemail_init(wnd)
	{
 	$("#forgotemail_txt")
	.html("A new password has been sent to "+wnd_forgotpswd_email+".<br>"
		+"Happy Ploopin'!<br>");
	}

//------------------------------------------
function wnd_forgotemail_ok(wnd)
	{
	wnd_close($("#wnd_forgotemail"), _wnd_signin);
	}
	
	
	
	
	
	