<!--
d = new Date();
hourValue = d.getHours();
if (hourValue < 12)
    {
    greeting = "Good morning and welcome to the Flowforms (Wiltshire) website.";
    }
else if (hourValue == 12)
    {
    greeting = "Good afternoon and welcome to the Flowforms (Wiltshire) website.";
    }
else if (hourValue < 17)
    {
    greeting = "Good afternoon and welcome to the Flowforms (Wiltshire) website.";
    }
else
    {
    greeting = "Good evening and welcome to the Flowforms (Wiltshire) website.";
    }
document.open();
document.write(greeting);
<!--