// Redirection de la frame sur accueil si appel directfunction retourindex (){if ( top == self )   self.location.href = "../index.html";}// Redirection de la page sur accueil si appel directfunction retourindexdirect (){if ( top == self )   self.location.href = "http://www.conception-nouvele.fr";}// Affichage datefunction afficheDate() {  var maintenant=new Date();  var jour=maintenant.getDate();  var mois=maintenant.getMonth()+1;  var an=maintenant.getFullYear();  document.write("Nous sommes le ",jour,"/",mois,"/",an,".");}
