function showGraphic(sFile, iWidth, iHeight, sDescription, sForummember)
{
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>Grady White Gallery</title>\n<link rel="stylesheet" type="text/css" href="../style.css">\n</head>\n\n');

wGraphic.document.write('<body>\n<table width="100%" height="100%">\n\n');

wGraphic.document.write('<tr><td align="center" class="forum_name"><img class="popup_image" src="'+sFile+'" width="'+iWidth+'" height="'+iHeight+'">\n');

wGraphic.document.write('<br>' + sForummember + '</td></tr>\n');

wGraphic.document.write('<tr><td align="center"><span class="popuptext">' + sDescription + '</span><p></td></tr>\n');

wGraphic.document.write('</table>\n</body>\n</html>\n\n');

return null;

}