function confirmLink2(theLink, message, mystep, myform)
{
    if (message == '')
      message = "Ben je zeker ?";

    var is_confirmed = confirm(message);
    if (!is_confirmed)
    {
        //theLink.href = myurl;
    }
    else if (myform != '')
    {
        //this.window.location.href = mydest;
        myform.step.value = mystep;
        myform.submit();
    }
    return is_confirmed;
} // end of the 'confirmLink()' function
