var surl;

function createRequestObject_index() 
	{
		var ro;
		var browser = navigator.appName;
		if(browser == "Microsoft Internet Explorer")
			{
				ro = new ActiveXObject("Microsoft.XMLHTTP");
			}
		else
			{
				ro = new XMLHttpRequest();
			}
		return ro;
	}
	

function funinchits(buid)
	{
		http_init_bjump = createRequestObject_index();
		var url =surl+"/ajaxforother.php?buissensslink="+buid+"&ajaxfor=increasehit";
		http_init_bjump.open('get', url);
		http_init_bjump.onreadystatechange = handleResponse_init_bjump;
		http_init_bjump.send(null);
	}
	
function handleResponse_init_bjump()
	{
		 
		if(http_init_bjump.readyState==4)
		{
		if(http_init_bjump.status==200)
			{ 
			}
		}
	}

function funsetindexblinkid(buid)
	{
		http_indexblink = createRequestObject_index();
		var url =surl+"ajaxforother.php?buissensslink="+buid+"&ajaxfor=indexsetbuiss_session";
		http_indexblink.open('get', url);
		http_indexblink.onreadystatechange = handleResponse_indexblink;
		http_indexblink.send(null);
	}
	
function handleResponse_indexblink()
	{
		if(http_indexblink.readyState==4)
		{
		if(http_indexblink.status==200)
			{ 
			}
		}
	}
	
	
	

	
	