// ALWAYS INCLUDE THIS JAVASCRIPT PAGE // This is required for help and for managing pop up windows. // Replica id number of the Main Help Database must be entered here:- // var hdb = ("/__80256AAB004D5915.nsf/keywords/") // Replica id number of the TEAM ROOM Help Database var hdb = ("/__80256AF400421FBC.nsf/keywords/") // Function showhelp - builds url and displays requested help. // parameters passed are document name (helpkey) and helpytpe - window, iframe - standard // or iframe pop up. function showhelp(helpkey,helptype) { // variables bod and pop control visibility of iframes switch (helptype) { case "window": // var hdb = ("/__80256AAB004D5915.nsf/keywords/") // Replica id number of the TEAM ROOM Help Database var hdb = ("/__80256AF700372C5B.nsf/webhelp/") windowOpener(hdb + helpkey + '?openDocument','secondary_window','toolbar=no,location=no,scrollbars=auto,directories=no,height=450,width=550') break } } // Managing Javascript popup windows // Checks to see if a popup window already displayed - if so use it. // Concludes by displaying window function windowOpener(url, name, args) { if (typeof(popupWin) != "object"){ popupWin = window.open(url,name,args); } else { if (!popupWin.closed){ popupWin.location.href = url; } else { popupWin = window.open(url, name,args); } } popupWin.focus(); }