//<!--<![CDATA[
               
var ajaxReq = new AjaxRequest();

function dodajKomentarz() {



	var typ = document.getElementById("typ").value;
	var id_art = document.getElementById("id_art").value;
	// nick goscia
	var autor = document.getElementById("comment_author").value;
	// email goscia
	var email = document.getElementById("comment_email").value;
	var tekst = document.getElementById("comment_text").value;

	if(autor == "") document.getElementById("error_koment").innerHTML = " Pole nick jest obowiązkowe";
	else if(tekst == "") document.getElementById("error_koment").innerHTML = " Pole treść komentarza jest obowiązkowe";
	else if(tekst.length < 20) document.getElementById("error_koment").innerHTML = " Komentarz za krótki!";
	else {
	
		
		ajaxReq.send('POST', 'strony/baza/dodawanie_komentarza.php', obslugaZapytania, 
	'application/x-www-form-urlencoded; charset=iso-8859-2',
	'id_art=' + id_art +
	'&&typ=' + typ +
	'&&autor=' + autor +
	'&&email=' + email +
	'&&tekst=' + tekst);
	
	document.getElementById('whole_comment').innerHTML="";
	document.getElementById('dodano').innerHTML="<img src='grafika/layout/loading2.gif' />";

	
	}
};

function obslugaZapytania(){
	
		if(ajaxReq.getReadyState() == 4 && ajaxReq.getStatus() == 200) {
			document.getElementById('dodano').innerHTML = ajaxReq.getResponseText();
		}
	
}


	// ]]>-->
