function SendToAFriend(Video)
{
	window.open('envoyer-a-un-ami-' + Video + '.html', 'popup', 'location=1,directories=1,scrollbars=1,resizable=1,menuBar=1,width=500,height=300');
}

function out(Id)
{
	var xhr_object;

	if(window.XMLHttpRequest) // Firefox
	   xhr_object = new XMLHttpRequest();
	else if(window.ActiveXObject) // Internet Explorer
	   xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
	else
		return;

	xhr_object.open("GET", "out-" + Id + ".html", true);
	xhr_object.send(null);
}

function outvideonoredir(Id)
{
	(new Image()).src="index.php?page=outvideonoredir&id=" + Id + "&rand=" + parseInt(Math.random()*10000000);
	return true;
}

