function checkOnline(_id)
{
	if(!_id) return 0;
	this.Class = Math.round(Math.random() * 10000000000000000);
	var XMLUrl = "./set_online_status.php";
	$.post(XMLUrl,
	{
		RandomNumber: this.Class,
		id: _id 
	}, function (xml) {});
}
