// JavaScript Document
function git(hid)
{
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
{
alert ("Lütfen güncel bir tarayıcı kullanın.")
return
} 

var url="git.php?id="+ hid
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function GetXmlHttpObject()
{ 
var objXMLHttp=null
if (window.XMLHttpRequest)
{
objXMLHttp=new XMLHttpRequest()
}
else if (window.ActiveXObject)
{
objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
}
return objXMLHttp
} 
