function pagetop(stub) 
{
//	document.write('<DIV ALIGN="CENTER"><B><FONT SIZE=+4>Ashley\'s Web Site</FONT></B></DIV>');

	document.write('<SPAN CLASS="class1">');
	document.write('<TABLE WIDTH=100% BORDER=0>');
	document.write('<TR>');
	document.write('<TR bgcolor= #9900FF>');
	document.write('<TD> <A HREF="' + stub + '/index.html"> HOME </A> </TD>');
	document.write('<TD> <A HREF="' + stub + '/interests.html"> PERSONAL </A> </TD>');
	document.write('<TD> <A HREF="' + stub + '/Software/index.html"> SOFTWARE </A> </TD>');
	document.write('<TD> <A HREF="' + stub + '/Science/index.html"> SCIENCE </A> </TD>');
	document.write('<TD> <A HREF="' + stub + '/Pictures/index.html"> PICTURES </A> </TD>');
	document.write('<TD> <A HREF="' + stub + '/links.html"> LINKS </A> </TD>');
	document.write('<TD> <A HREF="' + stub + '/Contact/contact.html"> CONTACT </A> </TD>');
	document.write('</TR>');
	document.write('</TABLE>');
	document.write('</SPAN>');

}

function bottom()
{
}

function tableitem(tabletext, tablecolour, linkpage) {

  document.write('<TR<TD>><A class="noline" HREF="' + 
  	linkpage + '" ><FONT COLOR="', tablecolour ,'" SIZE="2"><b>' + tabletext + 
  	'</b></FONT></A></TD></TR>');
}

function softwaretop()
{
	document.write('<TABLE BORDER=0 WIDTH=100% HEIGHT=75>');
	document.write('<TR>');

	document.write('<TD VALIGN=TOP WIDTH=15%>');
	document.write('<SPAN CLASS="class2">');
	document.write('<TABLE BORDER=0>');
	document.write('<TR><TD><A HREF="./index.html">Software</A></TD></TR>');
	document.write('<TR><TD><A HREF="./dde-solve.html">DDESolve</A></TD></TR>');
	document.write('</TABLE>');
	document.write('</SPAN>');
	document.write('</TD>');

	document.write('<TD>');
}

function softwarebottom()
{
	document.write('</TD>');
	document.write('</TR>');
	document.write('</TABLE>');
}

//document.write("<TITLE> Ashley's Internet Site</TITLE >");
