function GetNews(id)

{ 
	var xmlHttp;
	try
	{
	 xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch (e)
	{
	 try
	 {
	   xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	 }
	 catch (e)
	 { 
		try
		{
			xmlhttp=new XMLHttpRequest();
		}
		catch (e)
		{
		}
	 }
	}
	
	 xmlhttp.open("get","Accoutment/TopNews.asp?tid="+escape(id)+"&t=" +  new Date().getTime());
			  
			   xmlhttp.onreadystatechange=function()
			   {
				 if(4==xmlhttp.readyState)
				 {
				 
			
				   if(200==xmlhttp.status)
				   {
					msg=xmlhttp.responseText;
				   }
				   else
				   {
					 msg="Network link failure!";
					 msg=xmlhttp.responseText;
				   }
				   
						
						var ch=document.getElementById("news");
						
						ch.innerHTML="<font color='#FF0000'>"+msg+"</font>";
					
				
				 }
			   }
			   xmlhttp.send(null);  
			   return false;
			   
	}
	
function GetCountrynews(id)

{ 
	var GetCountrynews;
	try
	{
	 GetCountrynews=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch (e)
	{
	 try
	 {
	   GetCountrynews=new ActiveXObject("Microsoft.XMLHTTP");
	 }
	 catch (e)
	 { 
		try
		{
			GetCountrynews=new XMLHttpRequest();
		}
		catch (e)
		{
		}
	 }
	}
	 GetCountrynews.open("get","Accoutment/directory.asp?id="+escape(id)+"&t=" +  new Date().getTime());
			  
			   GetCountrynews.onreadystatechange=function()
			   {
				   
				 
				  
				 if(4==GetCountrynews.readyState)
				 {
				 
			
				   if(200==GetCountrynews.status)
				   {
					msg=GetCountrynews.responseText;
				   }
				   else
				   {
					
					msg="";
				   }
				  
						var ch=document.getElementById("Countrynews");
						
						ch.innerHTML=msg;
				 }
				 
				 
				   
						
						
					
				
				 
			   }
			   GetCountrynews.send(null);  
			   return false;
			   
	}
	


function GetCountrynews2(id)

{ 
	var GetCountrynews;
	try
	{
	 GetCountrynews=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch (e)
	{
	 try
	 {
	   GetCountrynews=new ActiveXObject("Microsoft.XMLHTTP");
	 }
	 catch (e)
	 { 
		try
		{
			GetCountrynews=new XMLHttpRequest();
		}
		catch (e)
		{
		}
	 }
	}
	 GetCountrynews.open("get","Accoutment/directory2.asp?id="+escape(id)+"&t=" +  new Date().getTime());
			  
			   GetCountrynews.onreadystatechange=function()
			   {
				   
				 
				  
				 if(4==GetCountrynews.readyState)
				 {
				 
			
				   if(200==GetCountrynews.status)
				   {
					msg=GetCountrynews.responseText;
				   }
				   else
				   {
					
					msg="";
				   }
				  
						var ch=document.getElementById("Countrynews");
						
						ch.innerHTML=msg;
				 }
				 
				 
				   
						
						
					
				
				 
			   }
			   GetCountrynews.send(null);  
			   return false;
			   
	}
