{JAVASCRIPT}
$("#btn_lost_full").click(function() {
jQuery('#log_lost').html('Отправка данных...');
$.post("/lost.php",{'do':'lost','rmail':$("#rmail").val()}, function(msg){
if(msg=='ok'){
showPopup("
Вам было выслано письмо с паролем! Проверьте почту!
",1);
}
else jQuery('#log_lost').html(msg);
});
});