function hltv(id, mail, link) {

	var url = "plugin/hltv.php?mail=" + mail + "&url=" + encodeURIComponent(link);

	xmlHttp.open("GET", url, true);

	xmlHttp.onreadystatechange = hltvResult(id, mail, link);

	xmlHttp.send(null);

}

function hltvResult(id, mail, link) {

	window.setTimeout('hltvChange(' + id + ', "' + mail + '", "' + link + '")', 1000);

}

function hltvChange(id, mail, link) {

	document.getElementById("hltv_" + id).setAttribute("class", "hlt_ok");

}
