function confirmLink(theLink, theSqlQuery)
{
    // 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(confirmMsg + ' :\n' + theSqlQuery);
    if (is_confirmed) {
        theLink.href += '&is_js_confirmed=1';
    }

    return is_confirmed;
} // end of the 'confirmLink()' function
confirmMsg='Wollen Sie den Datensatz wirklich löschen?';
//

function BWin(ref) {
  bla=window.open(ref,'BigInfoWin','toolbar=0,status=0,scrollbars=1,width=600,height=700,resizable=1,top=30,left=30');
  bla.focus();
  return false;
}
function BTWin(ref,sec) {
  if ( sec != "" ) {
    bla=window.open(ref,'BigInfoWin','toolbar=0,status=0,scrollbars=1,width=600,height=700,resizable=1,top=30,left=30');
    bla.focus();
  }
  return false;
}

function ddconfirm(theLink, theSqlQuery)
{
    // 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(theSqlQuery);
    if (is_confirmed) {
        theLink.href += '&is_js_confirmed=1';
    }

    return is_confirmed;
} // end of the 'confirmLink()' function


