// js_accueil.js du 27-08-2006
// retour à la page d'accueil si entrée intempestive sur le site

/*

if (top.location.href.indexOf("home-02")==-1) {
	document.write("<div style='width:100%; color:red; background-color:black; text-align:center;'>Vous tombez en plein milieu du site. <a href='javascript:retour_maison();'>Cliquez ICI</a></div>")
}

function retour_maison(){
	if (location.href.indexOf("home-")!=-1) {top.location.href="index.htm";}
	else {top.location.href="../index.htm";}
}
*/
