
// this file is only intended to work inside the 'francais' folder ...

function sendThisPageToAFriend(){
	var url   = window.location.href;
	var base  = 'http://www.absolut-film.com/francais/';
	var page  = url.substr( base.length - 1 ); // keeps the last /
	var email = window.prompt( 'Veuillez entrer l\'adresse email de votre ami(e).' );
	if( email !== null ){
		window.location.href = 'mailto:' + email
								+'?subject=Votre ami vous invite à aller voir la page suivante ...&body='
								+ base + 'index.php?page=/francais' + page;
	}
}

