jQuery(function ($) {
	var opo = {
		init: function () {  
			$(document).ready(function() {			
				$('#sentButton').click(function() {
					var l_sendBack;
					if($('#i_send_mail').is(':checked')){
						l_sendBack = 1;						
					}else{
						l_sendBack = 0;
					}
					
					$.post("storage/lib/C_Mailer.php", {"i_email": $('#i_email').val(),
														"i_title": $('#i_title').val(),
														"i_text": $('#i_text').val(),
														"i_send_mail": l_sendBack,
														"i_flag": "WEB_MAIL"},
						function(data){
					     if( data == 1){
					    	alert('Správa bola úspešne odoslaná'); 
					    	$('#i_email, #i_title, #i_text').val('');
					     }else{
					    	 alert('Chyba pri odsielaní správy ! \n Prosím skontrolujte vyplnené polia !');
					    	 
					     }
					   });					
				});				
			});		
		}
	};		
	opo.init();
});
