var xmlHttp_state;
function ch_view(ad_ge){ 
	//alert("aaaaaaaaa");
	//alert(ad_ge);
	xmlHttp_state=GetXmlHttpObject();
	if (xmlHttp_state==null) 
		{ alert ("<?php echo a_Browser_does_not_support;?>") 
		return }var url="ch_view.php";url=url+"?ad_ge="+ad_ge;
	//alert(url);
	xmlHttp_state.onreadystatechange=stateChanged_view;
	xmlHttp_state.open("GET",url,true);
	xmlHttp_state.send(null);}
	function stateChanged_view() 
		{ if (xmlHttp_state.readyState==4 || xmlHttp_state.readyState=="complete") 
		{ document.getElementById("result").innerHTML='' ; 
		document.getElementById("result").innerHTML=xmlHttp_state.responseText ; } }
		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;}