/********************************************************************************* * *      openFAQ.js * *      Provides basic functionality for the popup window used by the FAQ. * *      Version:        2.1 *      Date:           20 Nov 2000 *      Author:         William Sutton * *//*        Function:       openFAQ()        Parameter(s):   question anchor in the FAQ, a boolean value for security (1 == secure, 0                        or null == insecure)        Purpose:        Opens the FAQ at a particular anchor, with the anchored question hilighted        Example:        <a href="javascript:openFAQ('myAnchor', securityValue);">my link</a>*/function openFAQ (question, secure) {        var question = openFAQ.arguments[0];        var secure = openFAQ.arguments[1];                if (secure) {          var URL = "https://" + location.hostname + "/help-content.php";        } else {          var URL = "http://" + location.hostname + "/help-content.php";        }        var Name = "faq_popup";        var features = "width=500,height=300,status=no,menubar=no,scrollbars=yes,resizable=no";        window.open(URL,Name,features);}