1234567891011121314151617181920 |
- var cRects = document.body.getClientRects();
- var bodyHeight = cRects[0].bottom - cRects[0].top;
-
- document.write('<object id=rdbarcode');
- document.write(' classid="CLSID:88F70D57-2624-4E7C-A31E-2FC338B61EF2"');
- document.write(' codebase="/active_x/rd/rdbarcode9.cab#version=9,0,0,8245"');
- document.write(' name=rdbarcode width=0% height=0%>');
- document.write('</object>');
-
- document.write('<object id=TChart');
- document.write(' classid="CLSID:FAB9B41C-87D6-474D-AB7E-F07D78F2422E"');
- document.write(' codebase="/active_x/rd/teechart7.cab#version=7,0,1,5"');
- document.write(' name=TChart width=0% height=0%>');
- document.write('</object>');
-
- document.write('<OBJECT id=Rdviewer');
- document.write(' classid="clsid:04931AA4-5D13-442f-AEE8-0F1184002BDD"');
- document.write(' codebase="/active_x/rd/cxviewer60u.cab#version=6,2,3,133"');
- document.write(' name=Rdviewer width="100%" height="' + bodyHeight + '">');
- document.write('</OBJECT>');
|