function fpw()
{
    if (sm=prompt("Írd be a regisztrációnál megadott e-mail címedet."))
    {
        if (sm!='undefined' && sm!='null' && sm!='')
        {
            spw("sm="+sm);
        }
    }
}

function spw(param)
{
    var xmlHttpReq = false;
    var self = this;
    if (window.XMLHttpRequest)
    {
        self.xmlHttpReq = new XMLHttpRequest();
    }
    else if (window.ActiveXObject)
    {
        self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
    }
    self.xmlHttpReq.open('POST', 'ndi_spw_ax.sqn?cs=_ts', true);
    self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    self.xmlHttpReq.onreadystatechange = function()
    {
        if (self.xmlHttpReq.readyState == 4)
        {
            if (self.xmlHttpReq.responseText=="0")
            {
                alert("Nincs ilyen e-mail címmel regisztrált felhasználónk.");
            }
            else if (self.xmlHttpReq.responseText=="1")
            {
                alert("A jelszót elküldtük a megadott e-mail címre.");
            }
        }
    }
    self.xmlHttpReq.send(param);
}