/* $Id: functions.js,v 1.41 2003/09/24 13:33:34 rabus Exp $ */

function confirmLink(link, kwerenda)
{
    if (confirmMsg == '' || typeof(window.opera) != 'undefined') {
        return true;
    }

    var is_confirmed = confirm(confirmMsg + '\n' + kwerenda);
    if (is_confirmed) {
        link.href += '&is_js_confirmed=1';
    }

    return is_confirmed;
} // end of the 'confirmLink()' function


