var an=navigator.appName; 			// tells if Netscape or Explorer
var av=navigator.appVersion; 		// tells if Mac or PC

if (an == "Netscape") // this is the Netscape browser sniffer
    	 	{
     		if (navigator.appVersion.indexOf("Macintosh") == -1) 
          		{
  				document.write('<link rel=stylesheet type="text/css" href="http://www.coreyholms.com/css/win_nn.css">')
  				} 
     		else 
          		{
  				document.write('<link rel=stylesheet type="text/css" href="http://www.coreyholms.com/css/mac_nn.css">')
  				} 
     		}
     		

if (an == "Microsoft Internet Explorer") // this is the MSIE browser sniffer
     		{
         	if (av.indexOf("Macintosh") == -1) 
               	{
  				document.write('<link rel=stylesheet type="text/css" href="http://www.coreyholms.com/css/win_ie.css">')
  				}
          	else 
               	{
  				document.write('<link rel=stylesheet type="text/css" href="http://www.coreyholms.com/css/mac_ie.css">')
  				}
    		}
