// Redirection de la frame sur accueil si appel directfunction retourindex (){if ( top == self )   self.location.href = "../index.php";}// Redirection de la frame sur accueil si appel directfunction retourindexproduit (id){if ( top == self )   self.location.href = "../index_particulier.php?id="+id;}// Redirection de la listing sur accueil si appel directfunction retourindexlisting (){if ( top == self )   self.location.href = "../indexlisting.php";}// Affichage datefunction afficheDate() {  var maintenant=new Date();  var jour=maintenant.getDate();  var mois=maintenant.getMonth()+1;  var an=maintenant.getFullYear();  document.write("Mise &agrave; jour le ",jour,"/",mois,"/",an,".");}