var xmlHttp2

toggle2=0;

function read_english_articles()
{ 

xmlHttp2=GetXmlHttpObject2();
if (xmlHttp2==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url2="../ENGARTICLES/englisharticles.asp";
xmlHttp2.onreadystatechange=stateChanged2;
xmlHttp2.open("GET",url2,true);
xmlHttp2.send(null);
}
function stateChanged2() { 
if (xmlHttp2.readyState==4)
{ 

if (toggle2==0) 
{
document.getElementById("Collapse2").innerHTML="Collapse"; 
document.getElementById("EnglishArticles").innerHTML=xmlHttp2.responseText; 
toggle2=1;

}
else if (toggle2==1)
{
document.getElementById("Collapse2").innerHTML="Click Me"; 
document.getElementById("EnglishArticles").innerHTML="Please click the button to read all English Articles."; 

toggle2=0;}


}
}//end function


function GetXmlHttpObject2()
{
var xmlHttp2=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp2=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp2=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp2=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp2;
}