
        function OpenDownload(url){
      
          var path = "fileadmin/templates/brodbeck-stb-de/classes/aktuell_ajax.php?Urlnam="+url+"&Pfad=http://p132864.typo3server.info/fileadmin/templates/brodbeck-stb-de/classes/"
          $.ajax({
              url: path,
              type:"GET",
              dataType:"html",
              cache: false,
              success: function(data){
                var closeBtn = $("<div />").html("<span class='steuernews-close' onclick='closeDetail();'>schließen</span>");
                $(".steuernews-detail").html(data).prepend(closeBtn);
                $(".steuernews-detail").fadeIn("slow");
                $(".steuernews-detailmap").fadeIn("slow");                
                $(".maincontent-map").fadeOut("slow");
              }
         });        
}
          function closeDetail(){
              $(".steuernews-detail").fadeOut("slow");   
               $(".steuernews-detailmap").fadeOut("slow");            
              $(".maincontent-map").fadeIn("slow");
          }


