home *** CD-ROM | disk | FTP | other *** search
/ internet.au CDrom 42 / NETCD42.iso / web / w95 / dream2.exe / data1.cab / Program_Files / Configuration / Inspectors / displayHelp.js < prev    next >
Encoding:
Text File  |  1998-11-30  |  719 b   |  15 lines

  1. function displayHelp(){
  2.   var idRoot  = dreamweaver.getDocumentDOM('../../Help/contextID.html');
  3.   var contextSetter  = idRoot.documentElement;
  4.   var idURL = idRoot.URL;
  5.   var endURL = idURL.indexOf('contextID');
  6.   var driveURL = idURL.substring(0,endURL);
  7.  
  8.   contextSetter.innerHTML = '<head>\n<title>context setter</title>\n\n<script language="javascript">\nfunction setContext() {\n  parent.right.location="' + driveURL + helpDoc +'";\n}\n</script>\n</head>\n\n<body onLoad="setContext()">\n</body>';
  9.  
  10.   dreamweaver.saveDocument(idRoot,'../../Help/contextID.html');
  11.   dreamweaver.releaseDocument(idRoot);
  12.   var helpFrameset = driveURL + 'ContextHelp.htm';
  13.   dreamweaver.browseDocument(helpFrameset);
  14. }
  15.