    ///////////////////////////////////////////////////////////////////////////
    //                                                                       //
    //  START OF FILE                                                        //
    //                                                                       //
    //  - File Name:        /online/js/sec_ft_desc.js                        //
    //  - File Type:        Java Script File                                 //
    //  - Purpose:          Defines the descriptions of security features    //
    //  - Editing:          Level 3                                          //
    //  - Description:      Simple global javascript arrays for both types   //
    //                      of security features (school and hoovle          //
    //                      features), used only by /online/base/security/   //
    //                      security.php                                     //
    //  - Notes:                                                             //
    //  - Created By:       onassar (unknown precise date)                   //
    //                                                                       //
    ///////////////////////////////////////////////////////////////////////////

    // set the two global variables
    var scho_ft_desc    =    new Array();
    var hoov_ft_desc    =    new Array();

    // create the descriptions for the school entries
    scho_ft_desc['Filter Search']          =    'The Filter Search tool will allow Administrators &amp; Editors (Admin with restrictions)'+
                                                ' to <b>search</b> through messages, pages, alerts, etc., for <b>inappropriate language</b>, and report or delete it';
    scho_ft_desc['Login Information']      =    'Only Administrators &amp; Editors can download/print the information for Students &amp; Staff to '+
                                                '<b>login</b> to their accounts, as well as for Guardians to <b>create</b> theirs';
    scho_ft_desc['User Limits']            =    'User Limits allows the school to control what the Students & Staff <b>can do or '+
                                                'see</b>, incase of abuse (eg. restrictions from uploading files, sending messages, or even logging in at all)';
    scho_ft_desc['User Monitor']           =    'Monitor login information of the Students & Staff of your School (eg. <b>login history</b>, including how '+
                                                'long per login); as well as view any active \'User Limits\' imposed on them';
/*     scho_ft_desc['Help Forwarding']        =    'Forward any requests for help, having to do with security concerns, <b>directly</b> to the '+
                                                'Hoovle Support Team to take up <b>personally</b> with those involved'; */
    scho_ft_desc['Timed Logout']           =    'If any Student, Staff or Guardian forgets they are logged in, the system '+
                                                'will log them out if they do <b>not</b> click a link for 15 minutes. Don\'t worry about <b>forgetting</b> you\'re logged in.';

    scho_ft_desc['Staff Manager']          =    'Manage the login history of all staff, as well as change any information incase of <b>abuse of system</b><br>&nbsp;';
    scho_ft_desc['Student Manager']        =    'Manage the students, including all their <b>personal information</b><br><br>&nbsp;';
    scho_ft_desc['Guardian Manager']       =    'View all the information of Guardians signup up with your school, and <b>report any problems</b> '+
                                                'directly to Hoovle Support Team incase of <b>abuse</b> of system';

    // create the descriptions for the hoovle entries
    hoov_ft_desc['24 Hour Security']       =    'All personal information is stored on servers, monitored <b>24 hours a day</b>, 365 days a year, including '+
                                                'fire suppression systems, motion sensors, biometric access controls and <b>video surveillance</b>';
    hoov_ft_desc['Dedicated Server']       =    'All servers that store personal information are <b>dedicated</b>, meaning that <b>no</b> other information '+
                                                'is stored on them, making them accessible <b>only</b> to Hoovle administrators';
    hoov_ft_desc['Input Validation']       =    'Any input into a form on the website goes through a <b>series of steps</b>, to assure that no malicious code '+
                                                'that <b>hackers</b> may try to use, is run on the server (often forgotten by other websites)';
    hoov_ft_desc['Session Protection']     =    '<b>Everytime</b> you click on a link in Hoovle, it checks to make sure that you are <b>authorized</b> to view '+
                                                'the page and content, based on what type of user you are, and other information';
    hoov_ft_desc['XSS Secure']             =    'The newest type of hacking technique made famous for it\'s effectiveness on <b>GMail</b>, Hoovle is protected against '+
                                                'JavaScript hacking techniques, through <b>extensive coding and encryption</b>';
    hoov_ft_desc['SQL Injection Safe']     =    'Sometimes, user\'s are clever, and manage to submit a form with malicious code, that will show them information they <b>aren\'t</b> '+
                                                'allowed to see. We are <b>100% protected</b> against that';
    hoov_ft_desc['Daily Filter Search']    =    'Each day (often multiple times), a <b>search</b> through all schools, messages, pages '+
                                                'and <b>every</b> other piece of information is performed, for inappropriate language, comments &amp; anything else';
    hoov_ft_desc['Daily Backups']          =    'Each night, a <b>full backup</b> is done of the entire site, files uploaded, and more, to ensure valid records are kept '+
                                                'incase of <b>accidental deletion</b>, and for other security purposes';
    hoov_ft_desc['Cookie Safe']            =    'To make Hoovle safer, only the username last used on Hoovle is stored in a <b>cookie</b> (bits of information stored on <b>your</b> computer). '+
                                                'Otherwise, <b>no</b> other information is stored on your computer';
    hoov_ft_desc['Multi-Browser Safe']     =    'Hoovle was tested and created to work in over <b>8 different browsers</b>, and tested to make sure there were '+
                                                '<b>no inequalities</b> between security measures (often forgotten by other websites)';

    ///////////////////////////////////////////////////////////////////////////
    //                                                                       //
    //  END OF FILE                                                          //
    //                                                                       //
    ///////////////////////////////////////////////////////////////////////////