
function writeMenu()
{
ns = (document.layers)? true:false
ie = (document.all)? true:false
if (ns)
{
	graceLink = "nsGraceLink"
	ministryOf = "nsMinistryOf"
}
else
{
	graceLink= "ieGraceLink"
	ministryOf = "ieMinistryOf"
}
var menu='<div class="leftmenu">'+
'<a href="/index.html"><img src="/girs.gif" width="136" height="78" border="0" hspace="18" vspace="6"></a><br>'+
'<span class="blue">Theology Lessons</span><br>'+
'<a href="/library/theology/syllabus/index.html">Institute Syllabus</a><br>'+
'<a href="/class/readings.html">GIRS Reading List</a><br>'+
'<div class="space">&nbsp;</div>'+
'<span class="blue">Online Discussions</span><br>'+
'<a href="/onlinediscussions/vidconnect.html">Chat Channel Information</a><br>'+
'<div class="space">&nbsp;</div>'+
'<span class="blue">Our Library</span><br>'+
'<a href="/library/theology/index.html">Theology</a><br>'+
'<a href="/library/history/index.html">History</a><br>'+
'<a href="/library/churchissues/index.html">Church Issues</a><br>'+
'<a href="/library/society/index.html">Society & Culture</a><br>'+	
'<a href="/library/sermons/index.html">Sermons</a><br>'+	
'<div class="space">&nbsp;</div>'+
'<span class="blue">Links and Resources</span><br>'+
'<a href="/links/resources.html">Bible & Theology References</a><br>'+
'<a href="/links/news.html">News Resources</a><br>'+
'<a href="/links/denominations.html">Denominations</a><br>'+
'<a href="/links/schools.html">Schools and Seminaries</a><br>'+
'<a href="/links/publications.html">Publications</a><br>'+
 '<div class="space">&nbsp;</div>'+
'<span class="blue">About the Institute</span><br>'+
'<a href="/institute/statement.html">Statement of Faith</a><br>'+
'<a href="/institute/objectives.html">Objectives of the Institute</a><br>'+
'<a href="/institute/executivedirector.html">Our Executive Director</a><br>'+
'<a href="/links/linkhelp.html">Linking to Our Site</a><br>'+
'<a href="mailto:comn@girs.com">Contacting the Institute</a><br>'+
'<div class="space">&nbsp;</div>'+
 '</div>'+
'<div class="'+ministryOf+'">a ministry of</div><div class="'+graceLink+'"><a href="http://www.gracepinellas.com">Grace Presbyterian Church</a></div>';
document.write(menu);
}

function writeDate()
{
ns = (document.layers)? true:false
ie = (document.all)? true:false
month = new Array(12);
      month[0]="January"
      month[1]="February"
      month[2]="March"
      month[3]="April"
      month[4]="May"
      month[5]="June"
      month[6]="July"
      month[7]="August"
      month[8]="September"
      month[9]="October"
      month[10]="November"
      month[11]="December"
    day = new Array(7);
      day[0]="Sunday"
      day[1]="Monday"
      day[2]="Tuesday"
      day[3]="Wednesday"
      day[4]="Thursday"
      day[5]="Friday"
      day[6]="Saturday"
    today=new Date();
    d0=today.getDay();
    m0=today.getMonth();
    d1=today.getDate(); 
    y0 =(ns)? (today.getYear()+1900): (today.getYear());
    y0 = (y0<1900)? (y0=y0+1900): (y0);
	if (ns)
	{
		document.write("<DIV class='nsDate'> ",day[d0]," ",month[m0]," ",d1,", ",y0," "+"</DIV>");
	}
	else
	{
		document.write("<DIV class='ieDate'> ",day[d0]," ",month[m0]," ",d1,", ",y0," "+"</DIV>");
	}
}

