var xmlHttp;var xmlHttp_country;var id_headline;var id_country;function cntNews(b){var a="ajax_headline_count.php?mid="+b;a=a+"&sid="+Math.random();xmlHttp=GetXmlHttpObject(stateChanged_headline);xmlHttp.open("GET",a,true);xmlHttp.send(null)}function showNext(c,b){id_headline="headline";c++;var a="ajax_headline_news.php?nid="+c+"&mid="+b;a=a+"&sid="+Math.random();xmlHttp=GetXmlHttpObject(stateChanged_headline);xmlHttp.open("GET",a,true);xmlHttp.send(null)}function showPrevious(c,b){c--;var a="ajax_headline_news.php?nid="+c+"&mid="+b;a=a+"&sid="+Math.random();xmlHttp=GetXmlHttpObject(stateChanged_headline);xmlHttp.open("GET",a,true);xmlHttp.send(null)}function showCntNext(b){id_country="headlinecountry";b++;var a="ajax_headline_country.php?nid="+b;a=a+"&sid="+Math.random();xmlHttp_country=GetXmlHttpObject(stateChanged_country);xmlHttp_country.open("GET",a,true);xmlHttp_country.send(null)}function stateChanged_headline(){if(xmlHttp.readyState==4||xmlHttp.readyState=="complete"){if(document.getElementById(id_headline)!=null){document.getElementById(id_headline).innerHTML=xmlHttp.responseText}}}function stateChanged_country(){if(xmlHttp_country.readyState==4||xmlHttp_country.readyState=="complete"){document.getElementById(id_country).innerHTML=xmlHttp_country.responseText}}function GetXmlHttpObject(c){var b=null;if(navigator.userAgent.indexOf("Opera")>=0){alert("Opera not supported...");return}if(navigator.userAgent.indexOf("MSIE")>=0){var a="Msxml2.XMLHTTP";if(navigator.appVersion.indexOf("MSIE 5.5")>=0){a="Microsoft.XMLHTTP"}try{b=new ActiveXObject(a);b.onreadystatechange=c;return b}catch(d){alert("Error. Scripting for ActiveX might be disabled");return}}if(navigator.userAgent.indexOf("Mozilla")>=0){b=new XMLHttpRequest();b.onload=c;b.onerror=c;return b}};