//Link Bestätigung
function confirmLink(theLink, theSqlQuery)
{
    var is_confirmed = confirm(theSqlQuery);
    if (is_confirmed) {
        theLink.href += '&is_js_confirmed=1';
    }

    return is_confirmed;
}

//Fenster zentriert öffnen
function openWinCenter(path,name,sx,sy) {
var winl = (screen.width-sx)/2;
var wint = (screen.height-sy)/2;
popupwincenter=window.open(path,name,"toolbar=no,location=no,directories=no,scrollbars=yes,status=no,menubar=no,top="+wint+",left="+winl+",width="+sx+",height="+sy+"");
}

//Fenster öffnen
function openWin(path, name, top, left, width, height) {
  popupWin = window.open(path, name, "toolbar=no,location=no,directories=no,scrollbars=yes,status=no,menubar=no,top="+top+",left="+left+",width="+width+",height="+height+"")
}
