	function displayPic(picPath)
	{ 
		var picturePage = "";
		picturePage = '<html>';
		picturePage += '<head>';
		picturePage += '<title>CF Cemetery Picture Viewer</title>';
		picturePage += '	<link rel="stylesheet" href="cfc.css">';
		picturePage += '		<style media="screen" type="text/css"><!--';
		picturePage += '		a.updown { font-weight: normal; color: white; font-size: 8pt; font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular; text-align: center; text-decoration: none; }';
		picturePage += '		a:link.updown { color: white; }';
		picturePage += '		a:vlink.updown { color: white; }';
		picturePage += '		a:hlink.updown { font-weight: normal; color: white; font-size: 8pt; font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular; text-align: center }';

		picturePage += '		--></style>';
		picturePage += '	<script language="JavaScript" src="cem.js">';
		picturePage += '		<!--';
		picturePage += '		//-->';
		picturePage += '	</script>';
		picturePage += '	<script language="JavaScript">';
		picturePage += '	<!--';
		picturePage += '	defaultStatus="Connecticut Farms Church Cemetery - Picture";';
		picturePage += '	//--></script>';
		picturePage += '</head>';

		picturePage += '<body bgcolor="#000000" topmargin="0" marginheight="0" leftmargin="0" marginwidth="0"><a name="top"></a>';
		picturePage += '<table bgcolor="#FFFFFF" align="center" border="0" cellpadding="0" cellspacing="0" width="730">';
		picturePage += '	<tr>';
		picturePage += '		<td align="center"><img src="graphics/titlebl.gif" height="38" width="540" border="0"></td>';
		picturePage += '	</tr>';
		picturePage += '</table>';
		picturePage += '<table bgcolor="#FFFFFF" align="center" border="0" cellpadding="5" cellspacing="0" width="730">';

		picturePage += '<tr>\n';
		picturePage += '<td align="center"><img src="images/' + picPath + '" height="480" width="640" border="0">';
		picturePage += '</td>\n';
		picturePage += '</tr>';
		picturePage += '<tr>';
		picturePage += '	<td align="center"><a class="text" href="#" onmouseover="status=\'Back to pictures page\'" onclick="history.go(-1);">Back</a></td>';
		picturePage += '</tr>';


		picturePage += '</table>';
		picturePage += '<table bgcolor="#FFFFFF" align="center" border="0" cellpadding="10" cellspacing="0" width="730">';
		picturePage += '	<tr>';
		picturePage += '		<td align="center"><a name="bottom"></a><a href="index.html" class="jump" onmouseover="status=\'Return to Cemetery Home Page\'; return true;">Home</a>&nbsp;&nbsp;<a href="history.html" class="jump" onmouseover="status=\'Link to Cemetery History Page\'; return true;">History</a>&nbsp;&nbsp;<a href="search.html" class="jump" onmouseover="status=\'Link to Cemetery Search Form\'; return true;">Search</a>&nbsp;&nbsp;<a href="inscriptions.html" class="jump" onmouseover="status=\'Link to Cemetery Epitaphs Page\'; return true;">Epitaphs</a>&nbsp;&nbsp;<a href="http://www.ctfarms.org" class="jump" onmouseover="status=\'Link to Connecticut Farms Church Home Page\'; return true;">The&nbsp;Church</a>&nbsp;&nbsp;<a href="pictures.html" class="jump" onmouseover="status=\'Link to Cemetery Pictures Page\'; return true;">Pictures</a></td>';
		picturePage += '	</tr>';
		picturePage += '</table>';
		picturePage += '<table bgcolor="#FFFFFF" align="center" border="0" cellpadding="10" cellspacing="0" width="730">';
		picturePage += '	<tr>';
		picturePage += '		<td>';
		picturePage += '		<p class="footer"><b><i>First Presbyterian Congregation of Connecticut Farms </i></b>Stuyvesant Avenue &amp; Chestnut Street, Union, N.J. 07083 <br><b>Telephone:</b> (908) 688-3164 <b>Fax:</b> (908) 688-3166 <b>Email: </b><a href="mailto:cemetery@ctfarms.org?subject=CFPC cemetery search results page" onmouseover="window.status=\'Click here to send email\'; return true">cemetery@ctfarms.org</a></p>';
		picturePage += '		<div class="copy">&copy; Copyright 2008-2013, CFPC</div>';
		picturePage += '		<div class="wm"><a href="mailto:pete@peterglaser.com?subject=CFPC cemetery search results page" title="Pete" onmouseover="window.status=\'Click here to send mail to Webmaster\'; return true"><font size="1">Webmaster</font></a></div>';
		picturePage += '		</td>';
		picturePage += '	</tr>';
		picturePage += '</table>';
		picturePage += '</body>';
		picturePage += '</html>';

		document.open();
		document.write(picturePage);
		document.close();
	}