function toggle (id) {
  var obj = document.getElementById ? document.getElementById(id) :
  document.all ? document.all[id] : null;
  if(!obj || !obj.style) return;
  obj.style.display = obj.style.display != 'none' ? 'none' : 'block';
} 


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function delete_post(theURL)
{
        if (confirm( "Bist Du sicher, dass Du diese Datei löschen möchtest?" ))
        {
                window.location.href=theURL;
        }
        else
        {
                alert ( "Eintrag wird NICHT entfernt." );
        }
}

