function GetElementFromWWW(element,injectinto) {
		var xmlHttp = null;
		if (window.XMLHttpRequest) {
		  // IE7, Mozilla, Safari, and so on: Use native object.
		  xmlHttp = new XMLHttpRequest();
		} else	{
		  if (window.ActiveXObject) {
			// ...otherwise, use the ActiveX control for IE5.x and IE6.
			 xmlHttp = new ActiveXObject('MSXML2.XMLHTTP.3.0');
		  	
		  }
		}
		
		xmlHttp.onreadystatechange=function() {
			if(xmlHttp.readyState==4) {
				document.getElementById(injectinto).innerHTML = xmlHttp.responseText;
			
		}
		xmlHttp.open("GET","http://www.ds-display.dk/"+element,true);
		xmlHttp.send(null);
	}
}
