
<!-- Je cache pour les vieux browsers
function display_title() {
var hours = date.getHours(); 
var message = '';
 if (hours < 6) { time_of_day = 'Good Night'; message='Night Message';}
 if (hours >= 6) { time_of_day = 'Good Morning'; message='Morning Message';}
 if ((hours >= 12) && (hours < 18)) { time_of_day = 'Good Afternoon'; message='Afternoon Message'}
 if (hours >= 18) { time_of_day = 'Good Evening'; message='Evening Message';}  
document.write('<CENTER><H8>' + time_of_day.fontcolor("#FFFFFF") +'<FONT COLOR ="#FFFFFF"> and welcome on our site!</H8></CENTER>');
   }

// je ne cache plus -->
display_title();
