// FILE: select_style.js
// GOAL: To add the appropriate stylesheet based on browser version
//       Flag is set by globalbrowserdetect.js prior to this

// If we are using Netscape 4.* and higher
if (browser.isNS4up ) 
{
	document.write('<link rel="StyleSheet" HREF="script/style.css" TYPE="text/css" />');
	// alert('Style sheet is added through a link to script/style.css');
}
else 
{
	document.write('<style TYPE="text/css">@import "script/style.css";</style>');
	// alert('Style sheet is added through an import of script/style.css');
}


// End of script



