<!--//<script language="javascript">
/* Objet: Utilitaires de Javascript
Fichier : isseo1.js
Version : 1.0
*/
/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) 														// firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ 					// opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}
/**********************************************/
function date() {       
	var now = new Date();
	var day = now.getDay();
	var date = now.getDate();
	var month = now.getMonth() +1;
	var year = now.getYear();
	var jour = ""; var mois = "";

	if (year < 1900) year = year + 1900;
	if (day == 0) jour = "Dimanche";
	if (day == 1) jour = "Lundi";
	if (day == 2) jour = "Mardi";
	if (day == 3) jour = "Mercredi";
	if (day == 4) jour = "Jeudi";
	if (day == 5) jour = "Vendredi";
	if (day == 6) jour = "Samedi";
	if (month == 1) mois = "janvier";
	if (month == 2) mois = "f&eacute;vrier";
	if (month == 3) mois = "mars";
	if (month == 4) mois = "avril";
	if (month == 5) mois = "mai";
	if (month == 6) mois = "juin";
	if (month == 7) mois = "juillet";
	if (month == 8) mois = "ao&ucirc;t";
	if (month == 9) mois = "septembre";
	if (month == 10) mois = "octobre";
	if (month == 11) mois = "novembre";
	if (month == 12) mois = "d&eacute;cembre";

	return( jour + "  " + date + " " + mois   + " " + year );
}
-->
