miketext=new Date();
dateText=" ";


monthValue=miketext.getMonth();
dateText +=" ";
if (monthValue==0)
    dateText +="Last Modified January ";
if (monthValue==1)
    dateText +="Last Modified February ";
if (monthValue==2)
    dateText +="Last Modified March ";
if (monthValue==3)
    dateText +="Last Modified April ";
if (monthValue==4)
    dateText +="Last Modified May ";
if (monthValue==5)
    dateText +="Last Modified June ";
if (monthValue==6)
    dateText +="Last Modified July ";
if (monthValue==7)
    dateText +="Last Modified August ";
if (monthValue==8)
    dateText +="Last Modified September ";
if (monthValue==9)
    dateText +="Last Modified October ";
if (monthValue==10)
    dateText +="Last Modified November ";
if (monthValue==11)
    dateText +="Last Modified December ";



dateText += (miketext.getFullYear());
mikesData= 
minuteValue=miketext.getMinutes();
if (minuteValue < 10)
    minuteValue="0" + minuteValue

hourValue=miketext.getHours();
if (hourValue == 0)
   {
   Hello="Good morning and Welcome";
   timeText=(hourValue+12) + ":" + minuteValue + " am ";
   }
else if (hourValue < 12)
    {
    Hello="Good Morning and Welcome";
    timeText=hourValue + ":" + minuteValue + " am ";
    }
else if (hourValue == 12)
    {
    Hello="Good Afternoon and Welcome";
    timeText=hourValue + ":" + minuteValue + " pm ";
    }
else if (hourValue < 17)
    {
    Hello="Good Afternoon and Welcome";
    timeText=(hourValue-12) + ":" + minuteValue + " pm ";
    }
else
    {
    Hello="Good Evening and Welcome";
    timeText=(hourValue-12) + ":" + minuteValue + " pm ";
    }


document.open
document.writeln("<right>");
document.writeln(dateText);
