function trackclick(ev) 
{
	var url=document.location.protocol+ '//www.123together.com/trackclick.xhtml?event='+ev+'&x='+(new Date().getTime())+Math.floor(Math.random()*99999999);
	var req;
	if (window.XMLHttpRequest) 
	{
		req=new XMLHttpRequest();
		req.open("GET",url,false);
		req.send(null);
	} 
	else if (window.ActiveXObject) 
	{
		req=new ActiveXObject("Microsoft.XMLHTTP");
		if(req)
		{
			req.open("GET",url,false);
			req.send();
		}
	} 
	else 
	{
		req=new Image();
		req.src=url;
	}
	return true;
}