﻿// Modified by CoffeeCup Software
year = "06";
function Procedure1()
{
Window.location.href = "http://www.dccon.com"
}
function process(){}

  today = new Date()
  

  if(today.getMinutes() < 10) {
    pad = "0"}
  else
    pad = "";
 
  if((today.getHours() < 12) && (today.getHours() >= 6))
  {  document.write("<center><b><FONT SIZE=2 color=white>Good Morning</FONT></center>")}

  if((today.getHours() >= 12) && (today.getHours() < 18))
  {  document.write("<center><FONT SIZE=2 color=white>Good Afternoon</FONT></center>")}

  if((today.getHours() >= 18) && (today.getHours() <= 23))
  {  document.write("<center><FONT SIZE=2 color=white>Good Evening</FONT></center>")}

  if((today.getHours() >= 0) && (today.getHours() < 4))
  {  document.write("<center><FONT SIZE=2 color=white>You're up late today</FONT></center>")}

  if((today.getHours() >= 4) && (today.getHours() <= 6))
  {  document.write("<center><FONT SIZE=2 color=white>You're up early!!</FONT></center>")}

  document.write("<center><FONT  SIZE=2 color=white>Time: <b>",today.getHours(),":",pad,today.getMinutes())

  document.write("<br></b>Date: <b>",today.getMonth()+1,"/",today.getDate(),"/"+year+"</font></center>");
