
<!-- hide script from old browsers
function process(){}

  today = new Date()

  if(today.getMinutes() < 10) {
    pad = "0"}
  else
    pad = "";
  
  if((today.getHours() < 12) && (today.getHours() >= 6))
  {  document.write("<FONT face=Arial SIZE=3 color=cc0000>Good Morning and Welcome...</FONT>")}

  if((today.getHours() >= 12) && (today.getHours() < 18))
  {  document.write("<FONT face=Arial SIZE=3 color=cc0000>Good Afternoon and Welcome...</FONT>")}

  if((today.getHours() >= 18) && (today.getHours() <= 23))
  {  document.write("<FONT face=Arial SIZE=3 color=cc0000>Good Evening and Welcome...</FONT>")}

  if((today.getHours() >= 0) && (today.getHours() < 4))
  {  document.write("<FONT face=Arial SIZE=3 color=cc0000>Good Evening and Welcome...</FONT>")}

  if((today.getHours() >= 4) && (today.getHours() <= 6))
  {  document.write("<FONT face=Arial SIZE=3 color=cc0000>Good Morning and Welcome...</FONT>")}

// end hiding contents -->
