var articleTitle = " ";
var dateWritten = "2000";
var previousArticle = "index.html";
var nextArticle = "index.html";

function title(articleTitle, dateWritten, previousArticle, nextArticle) {
	this.articleTitle=articleTitle;
	this.dateWritten=dateWritten;
	this.previousArticle=previousArticle;
	this.nextArticle=nextArticle;
}

function header() {

	document.write('<table width="820" align="center" border="1" cellpadding="16"><tr align="center" valign="top" bgcolor="#ffffcc"><td align="left">');
	document.write('<img src="../images/laluciole2.jpg" width="128" height="115" vspace="8" hspace="8" align="right">');
	document.write('<h1>'+articleTitle+'</h1>');
	document.write('<br clear="all">');
	document.write('<center>');
	document.write('<a href="' + previousArticle + '"><img src="../images/buttonback.gif" border="0" height="32" width="100" hspace="8" vspace="8" alt="previous chapter"></a>');
	document.write('<a href="index.html"><img src="../images/buttonhome.gif" border="0" height="32" width="100" hspace="8" vspace="8" alt="home page"></a>');
	var contactname="admin";
	var contactaddress = "laluciole.net";
	document.write('<a href="mailto:' + contactname + '@' + contactaddress + '">');
	document.write('<img src="../images/buttoncontact.gif" border="0" height="32" width="100" hspace="8" vspace="8" alt="contact"></a>');
	document.write('<a href="' + nextArticle + '"><img src="../images/buttonnext.gif" border="0" height="32" width="100" hspace="8" vspace="8" alt="next chapter"></a>');
	document.write('</center>');

}

function footer() {
	document.write('<p>Richard Marshall &copy;'+ dateWritten);
	document.write('<a href="' + previousArticle + '"><img src="../images/buttonback.gif" align="left" border="0" height="32" width="100" hspace="8" vspace="8" alt="previous chapter"></a>');
	document.write('<a href="' + nextArticle +'"><img src="../images/buttonnext.gif" align="right" border="0" height="32" width="100" hspace="8" vspace="8" alt="next chapter"></a></p>');
	document.write('<br clear="all"><center><font size="-1">&copy;');
	now = new Date();
	year = now.getFullYear();
	document.write(' '+year+' ');
	document.write('<a href="http://www.laluciole.net/index.html" target="_top">www.laluciole.net</a></font></center>');
	document.write('</td></tr></table>');
}
