<!--voor macintosh
if (navigator.userAgent.indexOf("Mac") != -1)
{
	if (navigator.appVersion.indexOf("MSIE") != -1) 
	{
		if (parseInt(navigator.appVersion.substring(0,4)) >= "4")
		{
		  <!-- voor ie5 op mac -->
      document.write("<link rel='stylesheet' href='http://www.gocity.nl/GOcities/css/holland_mac5.css' type='text/css'>")
    }
    else 
    {
			<!-- voor ie op mac -->
      document.write("<link rel='stylesheet' href='http://www.gocity.nl/GOcities/css/holland_mac.css' type='text/css'>")
    }
  }
  else 
  {
		<!-- voor netscape op mac -->
    document.write("<link rel='stylesheet' href='http://www.gocity.nl/GOcities/css/holland_mac.css' type='text/css'>")
  }
}
<!-- voor PC -->
if (navigator.userAgent.indexOf('Win') != -1)
{
	if (navigator.appName.indexOf('Netscape') != -1) 
	{
		<!-- voor netscape op win -->
    if (parseInt(navigator.appVersion.substring(0,5)) >= "5")
    {
		  <!-- voor Net6 op pc -->
			document.write("<link rel='stylesheet' href='http://www.gocity.nl/GOcities/css/holland.css' type='text/css'>")
    }
    else 
    {
			<!-- voor net op pc -->
	    document.write("<link rel='stylesheet' href='http://www.gocity.nl/GOcities/css/holland_net.css' type='text/css'>")
    }
	}
  else 
  {
		<!-- voor ie op win -->
    document.write("<link rel='stylesheet' href='http://www.gocity.nl/GOcities/css/holland.css' type='text/css'>")
   }
}

