-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInjector Harness_frame.htm
49 lines (36 loc) · 1.03 KB
/
Injector Harness_frame.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<head>
<title>Injector Harness</title>
<script src="Injector Harness_utils.js"></script>
<script>
<!--
var g_NavBarLoaded = g_TitleBarLoaded = false;
function FileEntry(pageName, vmlImage, rasterImage) {
this.PageName = pageName;
this.VMLImage = vmlImage;
this.RasterImage = rasterImage;
}
g_FileList = new Array(
new FileEntry('Page-1', '', 'Injector Harness1_raster.htm'));
function HTMLExport() { }
g_theApp = new HTMLExport();
g_theApp.ActiveViewMgr = null;
g_theApp.UseVML = SupportsVML();
g_theApp.FileList = g_FileList;
g_theApp.CurrentPageIX = -1;
g_theApp.DrawingTitle = "Injector Harness";
function BlankPage(color)
{
if ( (null != color) && ("" == color) )
color = "black";
return "<html><body bgcolor='" + color + "'><body></html>";
}
//-->
</script>
</head>
<frameset rows="*,30">
<frame name="frmPageView" src="javascript:parent.BlankPage('white')" frameborder="no" scrolling="auto">
<frame name="frmNavBar" src="Injector Harness_nav.htm" frameborder="no" scrolling="no">
</frameset>
<noframes>
</html>