
function zaprenumeruj_biuletyn_enter( e, id )
{
    if( window.event ) // IE
    {
        kod = e.keyCode ;
    }
    else if( e.which ) // Netscape/Firefox/Opera
    {
        kod = e.which ;
    }

    if( kod == 13 )
    {
        zaprenumeruj_biuletyn( id ) ;
    }
}

function zaprenumeruj_biuletyn( id )
{
    if( $F( 'biuletyn_adres_'+id ).replace(/ /g, '') == ""  )
    {
        alert( 'Wpisz adres email na który ma być wysyłany Nasz biuletyn !' ) ;
        return ;
    }

    var ajax = new Ajax.Request( 'index.php' ,
    {
        method: 'post',
        parameters: {
            zapytanie: 'tak',
            element: 'biuletyn', 
            klasa: 'biuletyn',
            zapytanie_jakie: 'prenumeruj_biuletyn',
            email: $F( 'biuletyn_adres_'+id )
        },
        onComplete: function( originalRequest )
        {
            var wynik = originalRequest.responseText ;
            var ok = wynik.slice(0,2);
            if( ok == "ok" ) odp = 'dobra' ;
            else odp = 'zła' ;

            if( odp == 'dobra' )
            {
                $( 'biuletyn_adres_'+id ).value = "" ;
                wynik = originalRequest.responseText;
                wynik1 = wynik.substr( 2 ) ;

                if( wynik1.replace(/ /g, '') != ""  ) alert( wynik1 ) ;
            }
        },
        encoding : 'UTF-8'
    });
}



