
<!-- Hide this script from non-compliant browsers....

// This script simply imports the correct CSS for Netscape.
// All other browsers use the standard, MSIE-compliant CSS.

// ------------- The Script --------------

// First, create a variable to hold the browser type.

var brsr = navigator.appName

// Next, create a function that tells the browser which
// style-sheet to import.  Netscape is the only browser
// which currently has its own style-sheet, but this
// architecture would allow any browser to have one.  
// You could also parse the version, if necessary.

function checkWhich() {
	if (brsr == "Netscape") { 
		whichStyle = "<link rel='STYLESHEET' type='text/css' href='../style/vd_ns.css'>";
		document.write(whichStyle);
	} else {
		whichStyle = "<link rel='STYLESHEET' type='text/css' href='../style/vd.css'>"
		document.write(whichStyle);
	}	

}

// Finally, call the function.

checkWhich()


// ------------- End Script --------------

// Note, browsers with JavaScript disabled will not
// import any style-sheet whatsoever.

// End Hiding -->

