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

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

	wGraphic.document.write('<body text="black" link="#61357f" vlink="#8b0000" bgcolor="white">\n<link href="/style.css" rel="styleSheet" type="text/css">\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"></td></tr>\n');
	wGraphic.document.write('<tr><td align="center" valign="top"><span class="five"><b>' + sTitle + '</b></span><br></td></tr>\n');
	wGraphic.document.write('<tr><td align="center" valign="bottom"><span class="three"><a href="#" onclick="window.close();" value="Close">Close Window</a></span></td></tr>\n\n');
	wGraphic.document.write('<tr><td align="center" valign="bottom"><span class="two">All Images &copy; 2003 GenesAutoSales.com</span></td></tr>\n\n');

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

	return null;
}
