
	var title = document.title;
	var url = document.location.href;
	var protocol = document.location.protocol;
	var aujour = new Date;
		
		var jour1 = aujour.getDate();
		var jour  = (jour1< 10) ? ("0" + jour1) : jour1;
		var mois1 = aujour.getMonth() + 1;
		var mois  = (mois1 < 10) ? ("0" + mois1) : mois1;
		var annee = aujour.getFullYear();
		var dateconvert = jour + "/" + mois + "/" + annee;		
	
		if ((document.getElementById('nos2f-en') == null ) && (protocol == 'http:')) {
		document.write('<div id="sendToAFriend-1">');
		document.write('<a title="Send this page to a friend!" class="sendToAFriend" href="javascript:submitSendUrl(\'' + url + '\')" onclick="submitSendUrl(\'' + url + '\')"><img src="/images/mail.gif" alt="send to a friend" border="0">&nbsp;Send&nbsp;to&nbsp;a&nbsp;friend</a><br><br>');
		document.write('</div>');
	}
	else {
		
	}
	function submitSendUrl(url){
		document.sendUrl.url.value = url;
		document.sendUrl.title.value = title;
		document.sendUrl.submit();
	}
