function getPassword(email)
{

	//feedTheHungryBox("page_content", baseurl+"ajaxbox/password.php", {email: email}, false, "POST");
	//alert(email);
	feedTheHungryBox("errormsg", baseurl+"ajaxbox/password.php", {email: email}, false, "POST");

}

function ltrim(str)   //删除左边的空格
{ 
　　return str.replace(/(^\s*)/g,"");
}

function check()
{
	email = $("#user_email").val();

	if(ltrim(email) != '' && ltrim(email) != null)
	{
		email = ltrim(email);
		getPassword(email);
		//feedTheHungryBox("page_content", baseurl+"ajaxbox/password.php", {email: email}, false, "POST");
	}
	else
	{
		alert("请输入邮箱地址");
	}
}