// JavaScript Document// -------- BROWSER DETECTION ____//// Super Lightweight Browser Detection sniffs out IE for the PC and passes a style sheet with some minor// tweaks for the non-standards compliant browser.if ((navigator.appName).indexOf("Microsoft")!=-1 && navigator.appVersion.indexOf("Win") !=-1) {document.write ('<link rel="stylesheet" href="css/csh_ie.css" type="text/css">');}if ((navigator.appName).indexOf("Netscape")!=-1 && (parseInt(navigator.appVersion) < 8)) {document.write ('<link rel="stylesheet" href="css/csh_ns.css" type="text/css">');}
