/*-------------------------------------------
Copyright Notice
--------------------------------------------*/

mibNotice = "scripts by mib, Copyright (c) - 2005, mib - www.mib.ch";

/*-------------------------------------------
crypter e-mail
--------------------------------------------*/
mibArobase="@";
function mibMail(nom, domaine, titre){
	document.write('<a href=\"mailto:'+nom+mibArobase+domaine+'\" title=\"'+titre+'\">'+'e-mail '+'</a>')

}
//--------------- presenter date---------------
var mibDate=new Date();
mibNomMois= new Array("janvier","fvrier","mars","avril","mai","juin","juillet","aot","septembre","octobre","novembre","cembre");
//Ensure correct for language. English is "January 1, 2004"
var mibDateAffiche = mibDate.getDate() + " " + mibNomMois[mibDate.getMonth()] + " " + mibDate.getFullYear();
//---------------   ---------------

/*-------------------------------------------
fentre info
utilisation: <A HREF='javascript:popup("un texte a moi")'>Cliquez sur ce lien <img src="nav/BtnInfo.gif" border="0"></A>
--------------------------------------------*/
function popupInfo(texte) {
	// ouvre une fenetre sans barre d'etat, ni d'ascenceur
	var largeur=400;
	var hauteur=200;
	var haut=(screen.height-hauteur)/2;
  var gauche=(screen.width-largeur)/2;
	w=open("",'popup','width='+largeur+', height='+hauteur+', top='+haut+', left='+gauche+', toolbar=no, scrollbars=no, resizable=yes, location=no');	
	w.document.write("<TITLE>Info</TITLE>");
	w.document.write("<BODY>"+texte+"</BODY>");
	w.document.close();
}
