function showGraphic(sFile, iWidth, iHeight, sTitle)
{
	var wGraphic = window.open('','_blank','width='+parseInt(iWidth+50)+',height='+parseInt(iHeight+100)+',toolbars=no,resize=no,');

	wGraphic.document.write('<title>Seaside Inn Fenwick [' + sFile.substr(sFile.indexOf('/')+1,sFile.length) + ']</title>\n\n');

	wGraphic.document.write('<body text="black" link="#61357f" vlink="#8b0000" bgcolor="white">\n<table width="100%" height="100%">\n\n');

	wGraphic.document.write('<tr><td align="center" valign="top"><img border="2" src="'+sFile+'" width="'+iWidth+'" height="'+iHeight+'" border="1"><BR><BR><font size="4"><span class="four">' + sTitle + '</span></font><br><br>\n');
	wGraphic.document.write('<font size="2"><span class="two"><a href="#" onclick="window.close();" value="Close">Close Window</a></span></font><br><br><font size="-2"><span class="two">.</span></font></td></tr>\n\n');

	wGraphic.document.write('</table>\n</body>\n');

	return null;
}