function sndStat(ref, id)
{
	//$('convstat').InnerHTML = '<img src="http://www.dlhvip.com/wsstats.php?conv=1&idContact=' +  escape(id) + '&RefDLH=' +  escape(ref) + '">'; 
	//var page = '/wsstats.php' + '?conv=1&RefDLH=' + escape(ref) + '&idContact=' +  escape(id);
	//new Ajax.Request(page, {method: 'get'} );
}
/*
function sndStat(ref, id)
{
	var XhrObj = null;
	var page = 'http://www.dlhvip.com/wsstats.php';
	
	if (window.XMLHttpRequest)
	{ 
        XhrObj = new XMLHttpRequest();
    }
    else if (window.ActiveXObject) // Internet Explorer 
    {
		try 
		{
			XhrObj = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) 
		{
			XhrObj = new ActiveXObject("Microsoft.XMLHTTP");
		}
    }

	XhrObj.open('post', page, true);
	XhrObj.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
	XhrObj.send(page + '&conv=1&RefDLH=' + escape(ref) + '&idContact=' +  escape(id));

}*/