			function uzXmlHttp()
			{
					var xmlhttp = false;
					try{xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");}catch(e){try{xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");}catch(e){xmlhttp = false;}}
					if(!xmlhttp && document.createElement){xmlhttp = new XMLHttpRequest();}
					return xmlhttp;
			}
			
			function result(url)
			{
					// เอาค่าจาก form มาเก็บลง num1,num2
					var result;
					var new_time = new Date();
					url=url+"&refresh_time="+new_time.getHours()+":"+new_time.getMinutes()+":"+new_time.getSeconds();
					xmlhttp = uzXmlHttp();
					xmlhttp.open("GET", url, false);
					xmlhttp.send(null); 
					// รับค่ากลับจาก server มาเก็บลง result
					result = xmlhttp.responseText;
					// นำค่าที่ได้ออกไปแสงผล*/
					return result;
			}