function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}

function InnerHtmlUpdate(myUrl,myElement)
{
var xmlHttp=GetXmlHttpObject();

if (xmlHttp!=null)
  {
  	n = (new String (Math.random())).substring(2,11);
	xmlHttp.onreadystatechange=function(){
    		if(xmlHttp.readyState==4)
		{
			document.getElementById(myElement).innerHTML=xmlHttp.responseText;
		}
	}
	//xmlHttp.open("GET","/common/log.jsp?v1="+v1+"&v2="+v2+"&desc="+escape(desc)+"&n="+n,true);
	xmlHttp.open("GET",myUrl+"&n="+n,true);
	xmlHttp.send( null );
  }
}
