1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
| <html>
| <head>
| <title>Component Browser</title>
| </head>
|
| <!-- frames -->
| <frameset cols="30%,*">
| <frameset rows="50%,*">
| <frame name="PackageList" src="packagelist.cfm" marginwidth="10" marginheight="10" scrolling="auto" frameborder="1">
| <frame name="ComponentList" src="componentlist.cfm" marginwidth="10" marginheight="10" scrolling="auto" frameborder="1">
| </frameset>
| <frame name="ComponentDetail" src="componentdetail.cfm" marginwidth="10" marginheight="10" scrolling="auto" frameborder="1">
| </frameset>
|
| </html>
|
|