function SendPage(url)
{
	var Hauteur = 300;
	var Largeur = 500;	
	var Gauche = (screen.width / 2) - (Largeur / 2);
	var Haut = (screen.height / 2) - (Hauteur / 2);
	var Url = "sendpage.asp?Url=" + url;

	NewWindow=open(Url,"sendpage","menubar=0,resizable=0,scrollbars=0,status=no,left=" + Gauche + ",top=" + Haut + ",height=" + Hauteur + ",width=" + Largeur + "");
}


function bookmark(url)
{
	//***---This text will be shown to the visitor if it has Netscape.
	netscape="First push OK and then hit CTRL+D to add a bookmark to this site."

	if (navigator.appName=='Microsoft Internet Explorer')
		{
		window.external.AddFavorite(url, "Site de OWLFLY");
		}
	else if (navigator.appName=='Netscape')
		{
		alert(netscape);
		}
}