﻿	function ajaxIncreaseCounter(id)
	{
		objX = new XMLHttp();
		objX.post("/servlet/com.dic.vw.blog.site.servletAjaxIncreaseCounter", "id=" + id);

		objX.response = function() {}
	}	
	
	function ajaxGetSurveyResults(id)
	{
		objX = new XMLHttp();
		objX.post("/servlet/com.dic.vw.survey.site.servletAjaxGetVotingResults", "id=" + id);

		objX.response = function()
		{
			var data = this.xmlHttp.responseText;
			updateSurveyResults(data);
		}
	}