function votSubmit(){
	function getSend() {
		if(ajax.xml.readyState == 4 && ajax.xml.status == 200){
			alert(ajax.xml.responseText);
		}
		else {
			//alert("wait...");
		}
	}
	var votlist = by.GetName("votrad");
	for(var i = 0; i < votlist.length; i ++){
		if(votlist[i].checked){
			votid = votlist[i].value;
		}
	}

	var ajax = new by.Ajax();
	ajax.Send("vot.php?" + new Date().getTime(), {id : votid}, getSend);
}
