
 function getUpdateNews(){
        if(window.XMLHttpRequest){ 
        xmlObj = new XMLHttpRequest();
    }else if(window.ActiveXObject){ 
        xmlObj = new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlObj.open("GET", 'news.txt?rd='+Math.random(), true);
    xmlObj.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
    xmlObj.onreadystatechange = function() {	
        if (xmlObj.readyState == 4){
            if(xmlObj.status==200){
                data=xmlObj.responseText;
                document.getElementById('Scroll_txt').innerHTML=data;
            }
        }
    }
    xmlObj.send(null);

    }
	 function getUpdateNews1(){
        if(window.XMLHttpRequest){ 
        xmlObj1 = new XMLHttpRequest();
    }else if(window.ActiveXObject){ 
        xmlObj1 = new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlObj1.open("GET", 'news1.txt?rd='+Math.random(), true);
    xmlObj1.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
    xmlObj1.onreadystatechange = function() {	
        if (xmlObj1.readyState == 4){
            if(xmlObj1.status==200){
                data=xmlObj1.responseText;
                document.getElementById('new_txt').innerHTML=data;
            }
        }
    }
    xmlObj1.send(null);

    }
