//change
var showContent_xmlHttp

//change
function showContent_showData(urlName)
{

	//if (cID.length==0)
	//{ 										//change
	//	document.getElementById("content2").innerHTML="DATA SENDING ERROR.. PLEASE TRY AGAIN."
	//	return
	//}	
	//change				//change
	showContent_xmlHttp=showContent_GetXmlHttpObject()
	//change
	if (showContent_xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request")
		return
	} 
				//change
	var url=urlName
					//change
	url=url+"?sid="+Math.random()
	//change								//change									
	showContent_xmlHttp.onreadystatechange=showContent_stateChanged 
	//change
	showContent_xmlHttp.open("GET",url,true)
	//change
	showContent_xmlHttp.send(null)
} 

//change								
function showContent_stateChanged() 
{ 

		//change								//change
	if (showContent_xmlHttp.readyState==4 || showContent_xmlHttp.readyState=="complete")
	{ 									//change							//change		
		document.getElementById("description").innerHTML=showContent_xmlHttp.responseText; 
	} 
	else
	{
		document.getElementById("description").innerHTML = "<img src='img/loading.gif' /><br />Loading..";
		
	}
	
}
			//change
function showContent_GetXmlHttpObject()
{
		//change
	var showContent_xmlHttp=null;
	try
	{
		// Firefox, Opera 8.0+, Safari
		//change
		showContent_xmlHttp=new XMLHttpRequest();
	}
	catch (e)
	{
		// Internet Explorer
		try
		{
			//change
			showContent_xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			//change
			showContent_xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
			//change
	return showContent_xmlHttp;
}