Its 8 KB in size.
Image does not show up untill I click on the browser text box (which has cgi-callout) and click out side it.
//--- Approach I ---// add a function to your FormAPIfunction redrawForm() { IWDatacapture.redraw();}// from CGI... opener.top.datacapture.refreshForm(); api = opener.parent.getScriptFrame(); api.redrawForm();...//--- Approach II ---// from CGI without extra FormAPI function... opener.top.datacapture.refreshForm(); api = opener.parent.getScriptFrame(); api.IWDatacapture.redraw();...