function PageHeader ( MinorTitle, MajorTitle, MenuString ){	document.write (		'<table width=100% cellspacing=0 cellpadding=0>',		    '<tr>',			'<td>',				'<font face=helvetica size=3>', MinorTitle,					'</font><br>',				'<font size=6><i>', MajorTitle,					'</i></font>',				'</td>',			'<th align=right>', MenuString,				'</th>',			'</tr>',		    '<tr>',			'<td colspan=2><hr>',				'</td>',			'</tr>',		'</table>'	) ;}function PageFooter ( ){	PageOwner = "longtime@ix.netcom.com" ;	RevDate	  = new Date  ( document.lastModified ) ;	Month	  = new Array ( "Jan", "Feb", "Mar", "Apr", "May", "Jun",				"jul", "Aug", "Sep", "Oct", "Nov", "Dec" ) ;	document.write (		'<p><br><hr align=left width=20%>'			+ '<font size=2 face=helvetica>\n',		'<a href=mailto:' + PageOwner + '>'			+ PageOwner + '</a><br>\n',		'Revised ' + RevDate.getDate() + '-'			+ Month[RevDate.getMonth()] + '-' + RevDate.getYear()	) ;}function PhotoBox ( Title, Image, Text ){	document.write (		"<p><br><br>",		"<center>",		"<table cellpadding=16 width=90% bgcolor=#4182b6 border=4>",			"<tr><td>",			"<table width=100%><tr><th align=right>",				"<font color=#ffffff><hr><i>", Title,				"<hr></font></i></th></tr></table>",			"<img align=left border=2 vspace=12 hspace=20 ",				"width=160 height=120 src=", Image,			"><font face=helvetica color=#ffffff><p>",			Text, "<p><br>",			"</td></tr></table>",		"</th></tr></table>",		"</center>"	) ;}function MenuLink ( Label, Url ){	document.write	(		"<tr><td valign=top><img src=/image/bullet.gif>"				+ "</td><td><font face=helvetica>\n",		"	<a href=" + Url + ">", Label, "\n",		"	</a></face></td></tr>\n"	) ;}function GalleryBox ( Creator, Title, Image ){	document.write	(		"<table width=100% height=100%><tr><th>",		"<table bgcolor=#dddddd cellpadding=12 border=4><tr><th>",			"<img src=Image/", Image,				" width=320 height=240 border=1>",			"<p>",			"<big>", Title, "</big>",			"<p>",			Creator,		"</th></tr></table>",		"</th></tr></table>"	) ;}function GallerySlide ( Page, Image, Label ){	if ( Label == "" )		document.write ( 			"<tr><th><a href=", Page, "><img src=", Image,			" width=80 height=60 border=1></a></th></tr>"		) ;	else		document.write (			"<td align=center><font face=helvetica size=-1>",			"<a href=", Page, "><img src=", Image,			" width=80 height=60 vspace=4 border=1></a><br>",			Label, "</font></td>"		) ;}