
                function disableselect(e)
                {
                        return false;
                }
		
                function reEnable()
                {
                        return true;
                }
		
                document.onselectstart = new Function ("return false");
		
                if (window.sidebar)
                {
                        document.onmousedown = disableselect;
                        document.onclick = reEnable;
                }
		
 function createXMLHttpRequest() {
   try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
   try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
   try { return new XMLHttpRequest(); } catch(e) {}
   alert("XMLHttpRequest not supported");
   return null;
 }


                 var xhReq = createXMLHttpRequest();



                 function onResponse() {

                   if (xhReq.readyState == 4)  {
                                   a = xhReq.responseText.split("^");
				   document.getElementById("newson").innerHTML = a[0];
                                   window.setTimeout("getData()",5005);
                   }

                 }


                 function getData(){
                         xhReq.open("GET", "http://www.hpzone.de/index.php?ajax=1", true);
                         xhReq.onreadystatechange = onResponse;
                         xhReq.send(null);
                }

                getData();



