function wyslij() {
  img = new Image();
  img.src = "http://is.poznan.pl/components/com_statystyki/zwieksz_licznik.php";
}

function odbierz(id) {
	try {
	  xml = new ActiveXObject("Microsoft.XMLHTTP"); // IE
	} catch(e) {
	  try {
		xml = new XMLHttpRequest(); // Mozilla/FireFox/Opera
	  } catch(e) {
		xml = null;
	  }
	}
	 
	if (xml!=null) {
	  xml.open('POST', "http://is.poznan.pl/components/com_statystyki/zwieksz_licznik.php", false);
	  xml.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
	  xml.send("id_licz="+id);
	}
}

