advAJAX.setDefaultParameters({
	onInitialization : function(obj) { document.getElementById(obj.tag).innerHTML = "Przygotowywanie..."; },
	onLoading : function(obj) { document.getElementById(obj.tag).innerHTML = "Ładowanie..."; },
	onSuccess : function(obj) { document.getElementById(obj.tag).innerHTML = obj.responseText; },
	onError : function(obj) { document.getElementById(obj.tag).innerHTML = "Błąd..."; }

});

function add_fav(id) {
	advAJAX.get({ url: "http://www.ajoj.pl/ajax.php?page=add_fav&item="+id, tag: "fav" });
};
function mark(id,mark) {
	advAJAX.get({ url: "http://www.ajoj.pl/ajax.php?page=mark&item="+id+"&mark="+mark, tag: "fav" });
};
function print_comments(id) {
	advAJAX.get({ url: "http://www.ajoj.pl/ajax.php?page=print_comments&item="+id, tag: "comment_box" });
};
function add_comment(id) {
	//alert("śćźżół");
	if (document.getElementById('c_nick').value == ''){
		alert('Musisz wpisać autora!');
		return;
	}
	if (document.getElementById('c_comment').value == ''){
		alert('Musisz wpisać treść!');
		return;
	}
	//alert(document.getElementById('c_nick').value + '\n' + document.getElementById('c_comment').innerHTML);

	document.getElementById('c_button').disabled="true";
	//advAJAX.get({ url: "http://www.ajoj.pl/ajax.php?page=print_comments&item="+id, tag: "comment_box" });

   advAJAX.post({
         url : "http://www.ajoj.pl/ajax.php?page=add_comment&item="+id,

         parameters: {
             c_nick: document.getElementById('c_nick').value,
             c_email: document.getElementById('c_email').value,
             c_gg: document.getElementById('c_gg').value,
             c_comment: document.getElementById('c_comment').value
         },
         tag: "comment_state"
         })


	
	//advAJAX.get({ url: "http://www.ajoj.pl/ajax.php?page=print_comments&item="+id, tag: "comment_box" });
	 
};
function add_ucomment(id) {
	//alert("śćźżół");

	if (document.getElementById('c_comment').value == ''){
		alert('Musisz wpisać treść!');
		return;
	}
	//alert(document.getElementById('c_nick').value + '\n' + document.getElementById('c_comment').innerHTML);

	document.getElementById('c_button').disabled="true";
	//advAJAX.get({ url: "http://www.ajoj.pl/ajax.php?page=print_comments&item="+id, tag: "comment_box" });


   advAJAX.post({
         url : "http://www.ajoj.pl/ajax.php?page=add_comment&item="+id,

         parameters: {
             c_comment: document.getElementById('c_comment').value
         },
         tag: "comment_state"
         })
	
	//advAJAX.get({ url: "http://www.ajoj.pl/ajax.php?page=print_comments&item="+id, tag: "comment_box" });
	 
};
