var confirmMsg  = 'Moechten Sie wirklich diese Aenderung ausfuehren: ';


function confirmLink(theLink, theSqlQuery)
{
  
    // Confirmation is not required in the configuration file
    if (confirmMsg == '') {
        return true;
    }
    var is_confirmed = confirm(confirmMsg + ' :\n' + theSqlQuery);
    if (is_confirmed) {
        theLink.href += '&is_js_confirmed=1';
    }
    //alert ("is_confirmed="+is_confirmed);

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


function openuploads(what) {	
	window.open(what, "blank2","scrollbars=yes,toolbar=no,width=620,height=350,left=350");
};

//  

function confirmDelete(){
	Check = confirm("Ausgewaehlte Dateien loeschen?");
	if (Check == false){
	  history.back();
	}
}
