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

	wGraphic.document.write('<title>Kings Ice Cream [' + sFile.substr(sFile.indexOf('/')+1,sFile.length) + ']</title>\n\n');

	wGraphic.document.write('<body text="#000000" link="#000066" hlink="#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"><a href="#" onclick="window.close();" value="Close">Close Window</a><br><br>All Images &copy; 2009 Kings-IceCream.com</font></td></tr>\n\n');

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

	return null;
}
