// Operacje wykonywane po zaladowaniu strony
function init()
{
    // Ustawienie potwierdzenia
    if(document.getElementById('comment'))
    {
        var form_link = document.getElementById('comment');

        //var action = form_link.getAttribute('action') + '&confirm=1';
        var onsubmit = 'return verReg(this);';

        //form_link.setAttribute('action',action);
        form_link.setAttribute('onsubmit',onsubmit);
    }
}

// Sprawdzanie czy wszystkie pola sa wypelnione
function verReg (form)
{
    var Popraw = 'Wypełnij wszystkie wymagane pola';
    var Zatwierdz = 'Czy na pewno dodać ten komentarz?';

    if (
            ( form.commnick.value == '' )
        ||  ( form.commtitle.value == '' )
       )

        {
            alert(Popraw);
            return false;
        }

    else
    {
        if ( !confirm (Zatwierdz) )
            return false;
    }
}



