document.write("<TABLE align=middle border=0 cellPadding=0 cellSpacing=0 width=780>");
  document.write("<TR>");
    document.write("<TD>");
	   document.write("<TABLE border=0 width=780 cellpadding=0 cellspacing=0>");
  		  document.write("<TR>");
  		   document.write("<TD width=20% height=15 align=left class=Htop>|<a href=home.htm name=HOME> HOME </a>|</TD>");
			document.write("<TD width=60% height=15 align=middle class=Htop>");
	
		//------------------------------ Start of Date function ------------------------------- -->
		// Store the date in a variable
		d = new Date()
		dateText = ""
		
		// Get the current day and convert it to the name of the day
		dayValue = d.getDay()
		if (dayValue == 0)
			dateText += "Sunday"
		else if (dayValue == 1)
			dateText += "Monday"
		else if (dayValue == 2)
			dateText += "Tuesday"
		else if (dayValue == 3)
			dateText += "Wednesday"
		else if (dayValue == 4)
			dateText += "Thursday"
		else if (dayValue == 5)
			dateText += "Friday"
		else if (dayValue == 6)
			dateText += "Saturday"
		
		// Get the current month and convert it to the name of the month
		monthValue = d.getMonth()
		dateText += " "
		if (monthValue == 0)
			dateText += "January"
		if (monthValue == 1)
			dateText += "February"
		if (monthValue == 2)
			dateText += "March"
		if (monthValue == 3)
			dateText += "April"
		if (monthValue == 4)
			dateText += "May"
		if (monthValue == 5)
			dateText += "June"
		if (monthValue == 6)
			dateText += "July"
		if (monthValue == 7)
			dateText += "August"
		if (monthValue == 8)
			dateText += "September"
		if (monthValue == 9)
			dateText += "October"
		if (monthValue == 10)
			dateText += "November"
		if (monthValue == 11)
			dateText += "December"
		
		// Get the current year; if it's before 2000, add 1900
		if (d.getYear() < 2000) 
			dateText += " " + d.getDate() + ", " + (1900 + d.getYear())
		else 
			dateText += " " + d.getDate() + ", " + (d.getYear())
		
		// Get the current minutes
		minuteValue = d.getMinutes()
		if (minuteValue < 10)
			minuteValue = "0" + minuteValue
		
		// Get the current hours
		hourValue = d.getHours()
		
		// Customize the greeting based on the current hours
		if (hourValue < 12)
			{
			greeting = "Good Morning !"
			timeText = " at " + hourValue + ":" + minuteValue + " AM"
			}
		else if (hourValue == 12)
			{
			greeting = "Good Afternoon !"
			timeText = " at " + hourValue + ":" + minuteValue + " PM"
			}
		else if (hourValue < 17)
			{
			greeting = "Good Afternoon !"
			timeText = " at " + (hourValue-12) + ":" + minuteValue + " PM"
			}
		else
			{
			greeting = "Good Evening !"
			timeText = " at " + (hourValue-12) + ":" + minuteValue + " PM"
			}
		// Write the greeting, the date, and the time to the page
		document.write(greeting + " It's " + dateText + timeText)
		//-->
// ------------------------- End of Date function --------------------------------- -->

			document.write("</TD>");
			document.write("<TD width=20% height=15 align=right class=Htop>|<a href=contactme.htm> CONTACT </a>|</TD>");
		  document.write("</TR>");
	   document.write("</TABLE>");
	 document.write("</TD>");
  document.write("</TR>");
  document.write("<TR>");
  	 document.write("<TD>");
	   document.write("<TABLE border=0 width=780 cellpadding=0 cellspacing=0>");
  		  document.write("<TR>");
		    document.write("<TD align=middle width=351 height=80><a href=home.htm><IMG alt='Click to go Home Page' border=0 hspace=0 vspace=0 src=images/top_header_ajay.jpg></a></TD>");
		    document.write("<TD align=middle width=90 height=80><a href=aboutme.htm><IMG alt='Who is Ajay...' border=0 src=images/ajay.jpg></a></TD>");
		    document.write("<TD align=right width=191 height=80 background=images/top_background.jpg><a href=oriya_jagannath.htm><IMG src=images/welcome.gif border=0 width=170 height=40></a></TD>");
		    document.write("<TD align=middle width=148 height=80 background=images/top_background.jpg><a href=jagannath.htm><IMG alt='About Lord Jagannath' border=0 src=images/top_jagannath.gif width=100 height=77></a></TD>");
		  document.write("</TR>");
		document.write("</TABLE>");
	 document.write("</TD>");
  document.write("</TR>");
  document.write("<TR>");
    document.write("<TD height=15 class=Hbottom>&nbsp;  </TD>");
  document.write("</TR>");
document.write("</TABLE>");
//------------------------ End of top ------------------------------------- -->
  