
<!-- This script is designed to detect which browser is being used -->
<!-- and select the appropriate cascading style sheet -->

<!-- Begin
browsername=navigator.appName;
if (browsername.indexOf("Netscape")!=-1) 
	{browsername="NS"}
else  {if (browsername.indexOf("Microsoft")!=-1) 
		{browsername="MSIE"}   
	else {browsername="N/A"}};

if (browsername=="NS")  
	document.write("<LINK REL=stylesheet TYPE=\"text/css\" HREF=\"http://www.boston-online.com/graphics/style-netscape.css\">");
if (browsername=="MSIE")  
	document.write("<LINK REL=stylesheet TYPE=\"text/css\" HREF=\"http://www.boston-online.com/graphics/style.css\">");
if (browsername=="N/A")  
	document.write("<LINK REL=stylesheet type=\"text/css\" HREF=\"http://www.boston-online.com/graphics/style.css\">");

// End -->

