// Onkar Chandel 01/31/03 (c) ARCBridge Consulting
// File for printing header in every page of the site.

var assigned = 0;
var dateStr = "";

function printDate () {

    if (assigned == 1)
	    return dateStr;

	now       = new Date();
	day       = new Object();
	month     = new Object();
	day[0]    = "Sunday";
	day[1]    = "Monday";
	day[2]    = "Tuesday";
	day[3]    = "Wednesday";
	day[4]    = "Thursday";
	day[5]    = "Friday";
	day[6]    = "Saturday";
	month[0]  = "Jan.";
	month[1]  = "Feb.";
	month[2]  = "March";
	month[3]  = "April";
	month[4]  = "May";
	month[5]  = "June";
	month[6]  = "July";
	month[7]  = "Aug.";
	month[8]  = "Sept.";
	month[9]  = "Oct.";
	month[10] = "Nov.";
	month[11] = "Dec.";

	year = now.getYear();

	if (year < 1000)
		year += 1900;

	dateStr = "<b>" + day[now.getDay()] + ", " + month[now.getMonth()] + " " + now.getDate() + ", " + year + "</b>";
	assigned = 1;
	return dateStr;
}

document.write ("<table border='0' bordercolor='red' cellPadding='0' cellSpacing='0' width='645'>");
document.write ("    <tr align='left' vAlign='top'><td align='left'> <img border='0' src='images/header.jpg'></td>");
document.write ("    </tr> </table>");

document.write ("<DIV style='position: absolute; left: 6; top: 150; width: 117; height: 110' align='center'>");
document.write ("          <p style='margin:2'> <a class=menu href='default.htm'> Home </a></p>");
document.write ("          <p style='margin:2'> <a class=menu href='ramashramintro.htm'> Ramashram Satsang </a></p>");
document.write ("          <p style='margin:2'> <a class=menu href='naveen.htm'> Naveen Sadhana </a></p>");
document.write ("          <p style='margin:2'> <a class=menu href='literature.htm'> Literature </a></p>");
document.write ("          <p style='margin:2'> <a class=menu href='publication.htm'> Publication </a></p>");
document.write ("          <p style='margin:2'> <a class=menu href='events.htm'> Events </a></p>");
document.write ("          <p style='margin:2'> <a class=menu href='contacts.htm'> Contact Addresses </a></p>");
document.write ("          <p style='margin:2'> <a class=menu href='about.htm'> About Us </a></p>");
document.write ("</DIV>");
document.write ("<DIV style='position: absolute; left: 0; top: 70; width: 200; height: 20' align='center'>");
document.write ("    <font color='#4F688E' size='2'>" + printDate () + "</font></td>");
document.write ("</DIV>");
