function add_film(name,desc,code)	{
	

		if (document.getElementById) {
			
			var kod = code.replace(/&/g,'@@');  
		
			advAJAX.get({
				url: "ajax/add_film.php?film_name="+name+"&film_description="+desc+"&film_link="+kod,
//				onLoading : function(obj) { 
//					document.getElementById('event_'+event_id).innerHTML = 'Trwa ładowanie danych'; 
//				},
				onSuccess : function(obj) { 
					document.getElementById('add_film_error').innerHTML = obj.responseText 
					document.film.film_name.value = 'FILMIK ZOSTAŁ PRZESŁANY';
					document.film.film_link.value = '';
					document.film.film_description.value = '';
//					document.getElementById('description_'+event_id).style.color = '#FF952F';
				},
				onError : function(obj) { alert("Błąd! Spróbuj później."); },
				headers : {
					"content-type" : "text/html; charset=utf-8"
				}
			});
		} else alert("Twioja przeglądarka nie obsluguje tej wersji JavaSctipt");
}
