/*Talk-Bot by Wendell Cowart, Copyright(c) 2001-2014, This script may not be used in whole or in part in any form, shape or fashion. All rights reserved.*/ function display_time_response() { document.write("
"); var day = new Date(); var hr = day.getHours(); var hday = holiday(); if (hday != "")document.write(hday); else if (hr == 1) document.write("Good Evening!") else if (hr == 2) document.write("Welcome to the site.") else if (hr == 3) document.write("Welcome to my website") else if (hr == 4) document.write("Hey, would you like to chat?") else if (hr == 5) document.write("Hurray, I have someone to talk to!") else if (hr == 6) document.write("Good Morning!") else if ((hr == 7) || (hr == 8) || (hr == 9) || (hr == 10)) document.write("Good Morning!") else if (hr == 11) document.write("Good Morning! Welcome to the site.") else if (hr == 12) document.write("Time for some lunch soon!") else if (hr == 13) document.write("Hey, it's time for some lunch.") else if ((hr == 14) || (hr == 15) || (hr == 16)) document.write("Good Afternoon! Welcome to the net.") else if (hr == 17) document.write("Good Evening! I'm glad you're here!") else if (hr == 18) document.write("Hi, would you like to chat?") else if (hr == 19) document.write("Good Evening! Let's chat.") else if (hr == 20) document.write("Hurray! I have someone to talk to.") else if (hr == 21) document.write("Hey, would you like someone to talk to?") else if (hr == 22) document.write("Welcome to prime time on the web.") else if (hr == 23) document.write("It's nearing midnight....Aren't you sleepy yet?") else if (hr == 0) document.write("It's past midnight....do you ever sleep?") document.write("
") }