function showbanner()
{
    var bbW=Math.max($(document.body).width(), $(window).width()),bbH=Math.max($(document.body).height(), $(window).height());
    $(document.body).prepend('<div id="dibBG"></div>');
    $('#dibBG').width(bbW).height(bbH);

    $(document.body).prepend('<div id="divBGIMG"><a id="aPromo" href="http://elte.systemygps.com.pl/" target="_blank"></a><div>');

    var ml=Math.ceil(bbW/2-$('#divBGIMG').width()/2);

     $('#divBGIMG').css({"margin-top":"200px","margin-left":ml+"px"});

      $('#divBGIMG').prepend('<div id="divCLOSEPRM"></div>');

      $('#divCLOSEPRM').click(function(){
          $('#divBGIMG').fadeOut("slow",function(){$('#divCLOSEPRM,#dibBG,#divBGIMG').remove()});
      })


      $('#dibBG,#divBGIMG,#divCLOSEPRM').show();



}
