function load_poll(host,code) {
	$.ajax({ type :"post", 
		data : {}, 
		url : '/uws/include/poll.asp?host=' + host + '&code=' + code,
		contentType: "application/x-www-form-urlencoded;charset=windows-1250",
		success : function (data) {
					$("#poll_" + code).html(data)
  		}
	});
}
function poll_add(host, code, item_code) {
	$.ajax({ type :"get", 
				data : {}, 
				url : '/uws/include/poll.asp?host=' + host + '&code=' + code + '&item_code=' + item_code + '&mode=add',
				contentType: "application/x-www-form-urlencoded;charset=windows-1250",
				success : function (data) {
					$("#poll_" + code).html(data);
					$("#poll_" + code).fadeOut("fast");
					$("#poll_" + code).fadeIn("slow");
					//load_poll(host,code);
			    }
	});
}
