<!--
function hello()
{
var d=new Date();
var greeting="";
var hourValue=d.getHours();
if (hourValue < 12)
    {
    greeting="Good Morning it's ";
    }
else if (hourValue == 12)
    {
    greeting="Good Afternoon it's ";
    }
else if (hourValue < 17)
    {
    greeting="Good Afternoon it's ";
    }
else
    {
    greeting="Good Evening it's ";
    }
var prt1="";
var prt2="";
var prt3="";
var today = new Date();
var weekday = today.getDay();
if (weekday == 6) prt1='Saturday';
if (weekday == 0) prt1='Sunday';
if (weekday == 1) prt1='Monday';
if (weekday == 2) prt1='Tuesday';
if (weekday == 3) prt1='Wednesday';
if (weekday == 4) prt1='Thursday';
if (weekday == 5) prt1='Friday';
var month = today.getMonth();
if (month == 0) prt2='January';
if (month == 1) prt2='February';
if (month == 2) prt2='March';
if (month == 3) prt2='April';
if (month == 4) prt2='May';
if (month == 5) prt2='June';
if (month == 6) prt2='July';
if (month == 7) prt2='August';
if (month == 8) prt2='September';
if (month == 9) prt2='October';
if (month == 10) prt2='November';
if (month == 11) prt2='December';
var date = today.getDate();
var year = today.getYear();
prt3 = date+', '+year;
document.write (greeting,' ',prt1,', ',prt2,' ',prt3);
}
// -->
