/*** Written By:  Troy Millett							   ***/
/*** Date:		  07/12/2000							   ***/
/*** Version:	  1.0     								   ***/
/*** Description: Simple sniffer to find type of browser.  ***/
/*************************************************************/

//*** Find Browser Name ***
var Browser = navigator.appName

//*** Set values for cross browser functionality ***

if(Browser == "Netscape") {
    doc = "document";
    sty = "";
    htm = ".document"
    
} else if(Browser=="Microsoft Internet Explorer") {
    doc = "document.all";
    sty = ".style";
    htm = ""
}