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

	wGraphic.document.write('<title>Microwave Specialties [' + sFile.substr(sFile.indexOf('/')+5,sFile.length) + ']</title>\n\n');

	wGraphic.document.write('<body text="black" link="#61357f" vlink="#8b0000" background="aaback.jpg">\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"><font size="4" style="font-size: 17px;"><b>' + sTitle + '</b></font><br></td></tr>\n');
	wGraphic.document.write('<tr><td align="center" valign="bottom"><font size="2" style="font-size: 10px;"><a href="#" onclick="window.close();" value="Close">Close Window</a></font></td></tr>\n\n');
	
	wGraphic.document.write('</table>\n</body>\n');

	return null;
}
