//
// Copyright © Anygraaf Oy. All rights reserved.
//

var AjaxUrl = "http://192.168.100.135/scripts/edoris/edoris.dll?";
var Ajax = new AgAjax(AjaxUrl);

function MyQuery(template, element, async)
{
	bAsync = false;
	if ( AgIsSet(async) )
		bAsync = async;
	Ajax.Query(Array("tem"), Array(template), bAsync, ProcessQuery, element); 
}

function ArrayQuery(keys, values, element, async)
{
	bAsync = true;
	if ( AgIsSet(async) )
		bAsync = async;
	Ajax.Query(keys, values, bAsync, ProcessQuery, element); 
}

function ProcessQuery(xmlHttp, funcAttributes)
{
	var updateElem = document.getElementById(funcAttributes);
	if ( AgIsSet(updateElem) ) {
		updateElem.innerHTML = xmlHttp.responseText;
	}
}
