<!-- ********************************************************************************* --> 
<!-- *                            ACTIVATE CLOAKING DEVICE                           * --> 
<!-- ********************************************************************************* -->

<!-- ********************************************************************************** -->
<!-- *                                The Browser Sniffer                             * -->
<!-- *                                                                                * -->
<!-- * This routine will scan the users browser to determine the Make and Version of  * -->
<!-- * the browser they are using. You can then test against the Browser and execute  * -->
<!-- * the appropriate routine based on the test results.                             * -->
<!-- *                                                                                * -->
<!-- * Copyright (c) 2002 The DentalQuotes.com. All Rights Reserved.                  * -->
<!-- *                                                                                * -->
<!-- ********************************************************************************** --> 

<!-- ********************************************************************************** --> 
<!-- *                              Detect the Browser Make                           * -->
<!-- ********************************************************************************** --> 

var browserType = navigator.appName

<!-- ********************************************************************************* --> 
<!-- *          Determine which Stylesheet to incorporate into the Document          * -->
<!-- ********************************************************************************* --> 

var IEGlobalStylesheet = "<link REL='Stylesheet' TYPE='text/css' HREF='/DQ_Includes/StyleSheets/IEGlobalStylesheet.css'>"
var NAVGlobalStylesheet = "<link REL='Stylesheet' TYPE='text/css' HREF='/DQ_Includes/StyleSheets/NAVGlobalStylesheet.css'>"

if (browserType == "Microsoft Internet Explorer")
   {
	document.write(IEGlobalStylesheet)
   }
else { document.write(NAVGlobalStylesheet)
   }

<!-- ********************************************************************************* --> 
<!-- *                            DEACTIVATE CLOAKING DEVICE                         * --> 
<!-- ********************************************************************************* -->

