
function zlicz_click(id){
	var req;
	var url = "zlicz_click.php?id=" + id

	try {
		req = new XMLHttpRequest();
    } catch (e) {
		try {
			req = new ActiveXObject("Msxml2.XMLHTTP");
		} catch(e){
			req = new ActiveXObject('Microsoft.XMLHTTP')
		}
    }

    req.open("POST", url);
    req.send(null);
}


