﻿function LoadPage(url)
{
	var objXML = null;
	try { objXML = new ActiveXObject("Msxml2.XMLHTTP"); }
	catch(e)
	{
		try { objXML = new ActiveXObject("Microsoft.XMLhttp"); }
		catch(e)
		{
			try { objXML = new XMLHttpRequest(); } catch(e) { objXML = null; }
		}
	}
	if(objXML==null) { return "無法建立ajax物件"; }
	objXML.open("GET", url, false);
	objXML.send(null);
	try { return objXML.responseText; } catch (e) { return "載入失敗"; }
}
