var imgTemp = new Image();
imgTemp.src = '/gfx/ajax-loader.gif'; 

function serviceTopLayer(linkElement){
  $('#blockDialog').html('<img src="'+imgTemp.src+'" style="margin: auto; display: block; margin-top: 40px;" />')
             
        $('#blockDialog').dialog(
          {modal: true,  width: '500px', position: ['center', 10],resizable: false, draggable: false, autoOpen: false});
        $('#blockDialog').dialog('open');      
  
    $.ajax({
      url: '/a,'+linkElement,
      cache: true,
      success: function(html){
        $("#blockDialog").html(html);
      },
      error: function(){
        $("#blockDialog").html('Niestety wystąpił błąd!');
      }
});

  return false;                  
  
}

function newWindow(link){
  
  window.open(link);
  return false;

}

