/*----------------------------------------------------------------------**  The Snapshot class**--------------------------------------------------------------------*/function Snapshot ( Width, Height, Image, MajorTitle, MinorTitle, Narrative ){	this.show	= Snapshot_show ;	this.Width	= Width ;	this.Height	= Height ;	this.Image	= Image ;	this.MajorTitle	= MajorTitle ;	this.MinorTitle	= MinorTitle ;	this.Narrative	= Narrative ;}function Snapshot_show ( ){	document.write (		"<center>",		"<table width=10%><tr><th>",		  "<table bgcolor=white cellpadding=16 border=2>",		    "<tr><th><img border=1 ",			" src=", this.Image,			" width=", this.Width,			" height=", this.Height,			">"	) ;	if ( this.MajorTitle != "" )		document.write ( "<p><big>", this.MajorTitle, "</big>" ) ;	if ( this.MinorTitle != "" )		document.write ( "<p>", this.MinorTitle ) ;	document.write ( "</th></tr></table>") ;			if ( this.Narrative != "" )		document.write (			"</th><tr><td align=center><br>", this.Narrative			) ;	document.write (		"</td></tr></table>",		"</center>"		) ;}/*----------------------------------------------------------------------**  The Stationery class**--------------------------------------------------------------------*/function Stationery ( ){	this.append	= Stationery_append ;	this.show	= Stationery_show ;	this.Content	= "" ;}function Stationery_append ( Content ){	this.Content += Content ;}function Stationery_show ( Content ){	document.write (		"<center>",		"<table width=90% border=2 bgcolor=white>",		  "<tr>",		    "<td>",		      "<table width=100% cellpadding=24>",		        "<tr>",			  "<td>",			    this.Content,		          "</td>",			"</tr>",		      "</table>",		    "</td>",		  "</tr>",		"</table>",		"</center>"	) ;}/*----------------------------------------------------------------------**  The QuoteBox class**--------------------------------------------------------------------*/function QuoteBox ( Author, Publication, Text ){	this.show		= QuoteBox_show ;	this.Text		= Text ;	this.Author		= Author ;	this.Publication	= Publication ;}function QuoteBox_show ( ){	Paper = new Stationery ( ) ;		Paper.append (		"<table>" +		    "<tr><td colspan=2>" +		  	"<b><i>" + this.Publication + "</i></b><hr>" +			"</td></tr>" +		    "<tr><td colspan=2>" +		    	this.Text +			"</td></tr>" +		    "<tr>" +			"<td width=50%> &nbsp; </td>" +			"<td><br><ul><li><b>" + this.Author +				"</b></ul></td>" +		    "</tr>" +		"</table>" ) ;		Paper.show ( ) ;}/*----------------------------------------------------------------------**  Unbound classes**--------------------------------------------------------------------*/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 ",				"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>"		) ;}