 function ForgetPass(){
if ($("#FP").attr("placed") == 1) {
  $("#FP").toggle();	
} else {
   $("#MainMenu").append("<div id='FP' placed=1><table width=100% height=100% style='font-size:9pt; color:#ffffff; padding-right:3px;' ><tr><td height=27 align=right colspan=2>Ââåäèòå e-mail, óêàçàííûé ïðè ðåãèñòðàöèè</td></tr><tr><td valign=top style='padding-top: 2px;'><input type=text id=email></td><td valign=top><img src='style/FPB.png' style='cursor:pointer' id='SendFP'/></td></tr></table></div>");
   $("#SendFP").bind({
      mouseenter:function() {
         $(this).attr("src", "style/FPB_h.png");

         },

      mouseleave:function() {
         $(this).attr("src", "style/FPB.png");

         },
   
      click: function() {

  $.ajax({
				 	 type: "POST",
				 	 url: "UScript.php",
				 	 data: {SLink: 'Remind', email:$("#email").attr('value')},
				 	 success: function(data) {
                                top.location.href='http://animeforge.com';
                              },
				 });
}

});

}
}
