

function confirmLink(theLink, theText)
{
var confirmMsg  = 'Möchten Sie wirklich Löschen? ';
    // Confirmation is not required in the configuration file
    // or browser is Opera (crappy js implementation)
    if (confirmMsg == '' || typeof(window.opera) != 'undefined') {
        return true;
    }


    if (theText) {
  var is_confirmed = confirm(confirmMsg + '\n\n' + theText);
  if (is_confirmed) {
        theLink.href;
    }
    }else{

    var is_confirmed = confirm(confirmMsg);
    if (is_confirmed) {
        theLink.href;
    }
}
    return is_confirmed;
} // end of the 'confirmLink()' function


function confirmLink_senden(theLink, theText)
{
var confirmMsg  = 'Möchten Sie jetzt senden? ';
    // Confirmation is not required in the configuration file
    // or browser is Opera (crappy js implementation)
    if (confirmMsg == '' || typeof(window.opera) != 'undefined') {
        return true;
    }


    if (theText) {
  var is_confirmed = confirm(confirmMsg + '\n\n' + theText);
  if (is_confirmed) {
        theLink.href;
    }
    }else{

    var is_confirmed = confirm(confirmMsg);
    if (is_confirmed) {
        theLink.href;
    }
}
    return is_confirmed;
} // end of the 'confirmLink()' function

function confirmLink_bestellen(theLink, theText)
{
var confirmMsg  = 'Möchten Sie jetzt senden? ';
    // Confirmation is not required in the configuration file
    // or browser is Opera (crappy js implementation)
    if (confirmMsg == '' || typeof(window.opera) != 'undefined') {
        return true;
    }


    var is_confirmed = confirm(theText);
  if (is_confirmed) {
        theLink.href;
    }
    
    return is_confirmed;
} // end of the 'confirmLink()' function
