/*   ---------------------------------------------------------------------   */ 
/*                                                                           */
/*           Project: CPU Website v01.00                                     */
/*                                                                           */
/*            Source: SetStyleSheet.js                                       */
/*                                                                           */
/*            Author: John Slater                                            */
/*                                                                           */
/*      Date Written: 1st July 2005                                          */
/*                                                                           */
/*       Description: This javascript program should be included in all      */
/*                    html documents and contains the necessary code to      */
/*                    setup the document in a standard form                  */
/*                                                                           */
/*   ---------------------------------------------------------------------   */
                                                                           
/*   ---------------------------------------------------------------------   */
/*                                                                           */
/*       Parameters: N/A                                                     */
/*                                                                           */
/*      Exit Status: N/A                                                     */
/*                                                                           */
/*   ---------------------------------------------------------------------   */
                                                                            
/*   ---------------------------------------------------------------------   */
/*                                                                           */
/*   Modification History                                                    */
/*                                                                           */
/*   Date        Vern  Who  Comments                                         */
/*   ----------  ----  ---  ----------------------------------------------   */
/*   01/07/2005  1.00  JS   Original version                                 */
/*                                                                           */
/*   ---------------------------------------------------------------------   */

         if (navigator.appName != 'Microsoft Internet Explorer')
         {
            document.writeln('   <LINK REL   = STYLESHEET');
            document.writeln('         HREF  = "netscape.css">');
         }
         else
         {
            document.writeln('   <LINK REL   = STYLESHEET');
            document.writeln('         HREF  = "ie.css">');
         }
