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('<html>\n<head>\n\n');

wGraphic.document.write('<title>Sea Shell City</title>\n<link rel="stylesheet" type="text/css" href="../style.css">\n</head>\n\n');

wGraphic.document.write('<body bgcolor="#d7d7d7">\n<table width="100%" height="100%">\n\n');

wGraphic.document.write('<tr><td align="center" valign="top"><img src="'+sFile+'" width="'+iWidth+'" height="'+iHeight+'" border="1"></td></tr>\n');

wGraphic.document.write('<tr><td align="center" valign="top"><span class="maintext">' + sTitle + '</span><p></td></tr>\n');

wGraphic.document.write('<tr><td align="center" valign="bottom"><a href="#" onclick="window.close();" value="Close" class="hyperlink">Close Window</a><p></td></tr>\n\n');

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

return null;

}
