







//<!--

//--------------------------------------------------------------------------------------------------

function ajaxcall()
{
	this.url = null;
	this.data = null;
	this.success = function(xml, textStatus){};
	
	this.run = function()
	{
		$.ajax({
			url: this.url,
			type: "POST",
			data: this.data,
			dataType: "xml",
			success: this.success,
			error: function() {},
			cache: false
		});
	}
}
//----------------------------------------------------------------------------------------------------

function ajaxUpdateWebstat(sprache)
{
	var thecall = new ajaxcall();
	thecall.url = "/Onlinekatalog/WebstatUpdateServlet.jsp";
	thecall.data =
		{
			resolutionX: screen.width,
			resolutionY: screen.height,
			sprache: sprache
		};
	thecall.success = function() {};
	thecall.run();
}
//----------------------------------------------------------------------------------------------------

//-->
