function AjFav() {
	if ((navigator.appName.indexOf("Microsoft",0)>=0) && (parseInt(navigator.appVersion)>=4)) {
		window.external.AddFavorite("http://www.etab.ac-caen.fr/montchamp/index2.htm","Ecole de Montchamp" );
	} else {
		alert("Cette fonction n'est proposée que par Internet Explorer 4+")
	}
}

Modif = new Date(document.lastModified);
DateModif = " " + Modif.getDate() + "/" +
(Modif.getMonth()+1) + "/" +
Modif.getFullYear();

couleurligne = "#FF0000";
couleurbase = "#FF9900";
couleurover = "#FF9900";
function scrollBar(face)
	{
	with(document.body.style)
		{
		scrollbarDarkShadowColor=couleurligne;
		scrollbar3dLightColor=couleurligne;
		scrollbarArrowColor=couleurligne;
		scrollbarBaseColor=face;
		scrollbarFaceColor=face;
		scrollbarHighlightColor=face;
		scrollbarShadowColor=face;
		scrollbarTrackColor="#FFFCDA";
		}
	}
function colorBar(){
		var w = document.body.clientWidth;
		var h = document.body.clientHeight;
		var x = event.clientX;
		var y = event.clientY;
		if(x>w) scrollBar(couleurover);
		else scrollBar(couleurbase);
	}
