var sRemoteServer = location.protocol + '//' + location.host + '/';


function sendemail()
{ Ui.layerBlock('contactForm', ta('Trwa wysyłanie...'));
      var json = Ui.collect('contactForm');
       $.post(sRemoteServer, {request: 'index/sendMail', json: json}, function(output) {
           var oResponse = eval('('+output+')');
           if (oResponse != undefined) {
               if (oResponse.result) {
                   Ui.layerUnblock('contactForm');
                   alert(oResponse.message);
               } else {
                   Ui.layerUnblock('contactForm');
                   alert(oResponse.message);
               }
           }
       });
}

$(document).ready(function(){

$('#sender').click(function(){
     sendemail();
      });

})

