var m_names = new Array("January", "February", "March", 
"April", "May", "June", "July", "August", "September", 
"October", "November", "December");

var d = new Date();
var curr_date = d.getDate();
var curr_month = d.getMonth();
var curr_year = d.getFullYear();

function top_boilerplate () {
	document.write("<img src=\"images/top_banner.jpg\" alt=\"John Dickinson Studio\" width=\"900\" height=\"100\" border=\"0\">");
	document.write("<p><center><font face=\"verdana\">");
	document.write("<table width=\"800\">");
	document.write("	<tr>");
	document.write("		<td><a href=\"about.html\">About the Artist</a></td>");
	document.write("		<td><a href=\"paintings1.html\">Encaustic Paintings</a></td>");
	document.write("		<td><a href=\"exhibitions.html\">Exhibitions</a></td>");
	document.write("		<td><a href=\"links.html\">Links</a></td>");
	document.write("		<td align=\"right\"><a href=\"contact.html\">Contact</a></td>");
	document.write("	</tr>");
	document.write("</table><hr width=\"800\"></face></center><p>");
}

function bottom_boilerplate () {
	document.write("<p><center><hr width=\"800\"></center><p>");
	document.write("&copy;",curr_year," by John Dickinson Studio<br>");
	document.write("541 459-5752");
	document.write("</body></html>");
}

