// Display the corresponding civil dates
	var day, month, year;
	var today = new Date;
    var yesterday = new Date(today.getTime() - 86400000);
	day   = yesterday.getDate();
	month = yesterday.getMonth() + 1;
	year  = yesterday.getYear();
	if(year < 1900)
		year += 1900; // if date from Netscape, then add 1900
	//document.write('The corresponding civil dates are:<br>');
	//document.write('&nbsp;&nbsp;&nbsp;&nbsp;' + civMonth[month] + ' ' + day + ', ' + year + '&nbsp;(the night of)<br>');
	day   = today.getDate();
	month = today.getMonth() + 1;
	year  = today.getYear();
	if(year < 1900)
		year += 1900; // if date from Netscape, then add 1900
	document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' + civMonth[month] + ' ' + day + ', ' + year);
	document.write('&nbsp;&nbsp;/');


// Display the Hebrew date
	var now = new Date;
	var tday = now.getDate();
	var tmonth = now.getMonth() + 1;
	var tyear = now.getYear();
	if(tyear < 1900)
		// if date from Netscape, then add 1900
		tyear += 1900;
	var hebDate = civ2heb(tday, tmonth, tyear);
	var hmS = hebDate.substring(hebDate.indexOf(' ')+1, hebDate.length);
	var	hDay = eval(hebDate.substring(0, hebDate.indexOf(' ')));
	var hMonth = eval(hmS.substring(0, hmS.indexOf(' ')));
	var hYear = hmS.substring(hmS.indexOf(' ')+1, hmS.length);
	//document.write('The Hebrew date is:<br>');
	document.write('&nbsp;&nbsp;' + hebMonth[hMonth+1] + ' ' + hDay + ', ' + hYear);
	//document.write('<br>');
	

