				function cg(x)
					{
					document.getElementById('coguldetay').innerHTML='<img src="images/y.gif">';
					var xmlhttp;
					if (window.XMLHttpRequest)
					  {
					  xmlhttp=new XMLHttpRequest();
					  }
					else if (window.ActiveXObject)
					  {
					  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
					  }
					else
					  {
					  document.getElementById('coguldetay').innerHTML='Tarayıcınız Ajax fonksiyonlarını desteklemiyor...';
					  }
					xmlhttp.onreadystatechange=function()
					{
					if(xmlhttp.readyState==4)
					  {
					  if (xmlhttp.responseText.length>20){
					  document.getElementById('coguldetay').innerHTML=xmlhttp.responseText;}
					  }

					}
					xmlhttp.open("GET","cg.asp?tekd="+x+"&ikid="+Math.random(),true);
					xmlhttp.send(null);
					}
