// JavaScript Document
		function createXmlHttpRequest(url)
		{
			var xmlHttp;
			try
			{
				xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
			}catch(e)
			{
				try
				{
					xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
				}catch(E)
				{
					xmlHttp = false;
				}
			}
			
			if(!xmlHttp && typeof XMLHttpRequest != "undefined")
			{
				xmlHttp = new XMLHttpRequest();
			}
			return xmlHttp;
		}

		function connection(url,fun,style)
		{
			var xmlHttp = createXmlHttpRequest();
			
			var xmlDoc;
			xmlHttp.onreadystatechange = function()
			{
				if (xmlHttp.readyState == 4) {
				if (xmlHttp.status == 200) {
					if(style == "Text")
					{
						xmlDoc = xmlHttp.responseText;
					}
					else if(style == "XML")
					{
						xmlDoc = xmlHttp.responseXML;
					}
					fun(xmlDoc);
					
					
					}
				}
			};
			xmlHttp.open("GET", url, true);
			xmlHttp.send(null);
		}
		
	