function $(id) {return document.getElementById(id);}
function RecallPassword(email) {
 advAJAX.get({
	url: base + "pl/ajax_recall_password/email/" + email,
	onLoading : function(obj) {
	 $('recall_content').innerHTML = "Loading...";
    },
    onSuccess : function(obj) {
     $('recall_content').innerHTML = obj.responseText;
    },
    onError : function(obj) {
	 $('recall_content').innerHTML = "Wystąpiły problemy.<br/>Spróbuj później.";
    }
  });
}
