//========================================================================
// *** THIS FILE IS GENERATED-- DO NOT MODIFY ***
//
// extproc.js
//
// WARNING: Do not modify this file!  Add your custom code to CUSTOM.JS
//
// Generated by: Generate HTML for techniques, concepts, and other types of files.
//               Version 9.0.10
// Generated on: 4/26/01 2:39:45 PM
//// Contains the Javascript functions used by external processes.//// Copyright © 1996-2000 Computer Associates International, Inc.  All rights reserved.////========================================================================   if (this.name != TARGET_OTHER){      OpenNewWindow(this.location, TARGET_OTHER, parent.ATTR_EXTERNAL,  "");      //if the window stays open because it has a history, then set location back      whichbrowser = navigator.appName;      if (whichbrowser == "Netscape" ){         if (history.length > 1) {            history.back();         }         else {            self.focus();            self.close();         }      }      if (whichbrowser == "Microsoft Internet Explorer" ){         if (history.length >= 1) {            history.back();         }         else {            document.open("text/html", "replace");            document.write("<B>Microsoft Internet Explorer users:</B><BR>");            document.write("Internet Explorer security features do not allow windows to be closed automatically.<BR>");            document.write("By accessing an extended process, such as a technique, through means other than the Process Guide, you have triggered this feature.<BR>");            document.write("When prompted to close this window, please press the Yes button.<BR>");            document.write("Your extended process has been loaded into its own window and will appear after this window closes.<BR>");            document.close();            self.focus();            self.close();         }      }   }   else      this.focus();
