/*
#####################################################
#This script detects the browser version (Internet Explorer, Netscape, defaults for others)#
#and the user's platform, either Macintosh, or Windows.                                                   #
#Link this script externally, and use absolute links for the location of the style sheets        #
#####################################################
*/

if ((navigator.platform.substring(0,3) == "Mac") && (navigator.appName.substring(0,3) == "Mic"))
	 {
	  document.write("<LINK REL=stylesheet HREF=\"http://www.radford.edu/Foundation/styles/mac_ie.css\" TYPE=\"text/css\">"); 
	  }// end if

if ((navigator.platform.substring(0,3) == "Mac") && (navigator.appName.substring(0,3) == "Net"))
 	{
	 document.write("<LINK REL=stylesheet HREF=\"http://www.radford.edu/Foundation/styles/mac_net.css\" TYPE=\"text/css\">");
	} // end if
	
if ((navigator.platform.substring(0,3) == "Win") && (navigator.appName.substring(0,3) == "Mic"))
 	{
	 document.write("<LINK REL=stylesheet HREF=\"http://www.radford.edu/Foundation/styles/win_ie.css\" TYPE=\"text/css\">");
	} // end if
	
if ((navigator.platform.substring(0,3) == "Win") && (navigator.appName.substring(0,3) == "Net"))
 	{
	 document.write("<LINK REL=stylesheet HREF=\"http://www.radford.edu/Foundation/styles/mac_net.css\" TYPE=\"text/css\">");
	} // end if