function getInfo(page,divid,vars) {
	URL = page;		
	var INTcontentType = "application/x-www-form-urlencoded; charset=UTF-8";
	try { ajaxObj = new ActiveXObject("Msxml2.XMLHTTP"); }
	catch (e) 
	{
		try { ajaxObj = new ActiveXObject("Microsoft.XMLHTTP"); }
		catch (e) { ajaxObj = new XMLHttpRequest(); }
	}	
	ajaxObj.open("POST", URL, true);
	ajaxObj.setRequestHeader("Content-Type", INTcontentType);
	ajaxObj.send(vars);	
	ajaxObj.onreadystatechange = function () 
	{
		if (ajaxObj.readyState == 4) { document.getElementById(divid).innerHTML = ajaxObj.responseText; }
	}
}

