| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 | |
| 3 <HEAD> | |
| 4 <TITLE>UDT Manual</TITLE> | |
| 5 <META NAME="robots" CONTENT="noindex,follow"> | |
| 6 <LINK REL=StyleSheet TYPE="text/css" HREF="doc/treeview.css"> | |
| 7 <NULL TAG FOR NETSCAPES LITTLE HICKUP> | |
| 8 <SCRIPT LANGUAGE="JavaScript"> <!-- | |
| 9 function myError(msg, url, line) { return true; } | |
| 10 window.onerror = myError; key = ""; | |
| 11 | |
| 12 UniqueID = top.name = "UDT"; | |
| 13 window.defaultStatus = "UDT Manual"; | |
| 14 | |
| 15 if ((top.name != UniqueID) && (navigator.appName == "Netscape") && (navigator.ap
pVersion.charAt(0) == "2")) | |
| 16 { | |
| 17 opts = "location,menubar,status,resizable,toolbar,scrollbars"; | |
| 18 remote = window.open("index.htm"+ self.location.hash, UniqueID, opts); | |
| 19 | |
| 20 if (remote != null) | |
| 21 setTimeout("self.close();", 10); | |
| 22 } | |
| 23 | |
| 24 if (top.frames.length > 0) | |
| 25 { // ensure full-screen | |
| 26 if (window.stop) | |
| 27 window.stop(); | |
| 28 if (document.images) | |
| 29 top.location.replace(self.location.href); | |
| 30 else | |
| 31 top.location.href = self.location.href; | |
| 32 } | |
| 33 | |
| 34 function setFrameContent() | |
| 35 { | |
| 36 prm = " "+ self.location.href; | |
| 37 pos = prm.indexOf("href="); | |
| 38 if (pos > -1 && top.main) | |
| 39 { | |
| 40 var newPage = prm.substring(pos + 5, prm.length); | |
| 41 if (document.images) | |
| 42 top.main.location.replace(newPage); | |
| 43 else | |
| 44 top.main.location.href = newPage; | |
| 45 } | |
| 46 } | |
| 47 | |
| 48 function resizeReload() | |
| 49 { | |
| 50 if (document.layers && self.frames.index) | |
| 51 setTimeout("self.frames.index.location.reload();", 500); | |
| 52 } // --> | |
| 53 </SCRIPT> | |
| 54 </HEAD> | |
| 55 | |
| 56 <frameset rows="46,*,94" framespacing="0" border="0" frameborder="0"> | |
| 57 <frame name="top" scrolling="no" noresize target="main" src="doc/header.
htm"> | |
| 58 <frameset cols="295,*"> | |
| 59 <frame name="contents" target="main" src="main.htm"> | |
| 60 <frame name="main" src="doc/intro.htm" target="main" scrolling="auto"> | |
| 61 </frameset> | |
| 62 <frame name="bottom" scrolling="no" noresize target="main" src="doc/foot
er.htm"> | |
| 63 <noframes> | |
| 64 <body> | |
| 65 | |
| 66 <p>This page uses frames, but your browser doesn't support them.</p> | |
| 67 | |
| 68 </body> | |
| 69 </noframes> | |
| 70 </frameset> | |
| 71 | |
| 72 </html> | |
| OLD | NEW |