// Time of Day Image Script
// copyright Stephen Chapman, 20th Jan 2005
// you may copy this script but please keep the copyright notice as well
function timeOfDayImage() {
var now = new Date;
var timeNow = now.getHours();
var img = null; var mess = '';
if (timeNow < 9 || timeNow > 17) {
img = 'RCchatoff.gif'; mess = 'Click here to ask a question.';
} else if (timeNow < 18) {
img = 'RCchaton.gif'; mess = 'Click here to ask a question.';
} 
document.write('<img src="images\/'+img+'" width="200" height="128" style="margin-left:-15px" alt="'+mess+'"title="'+mess+'" />');
}
