<!--
/*******************************************************************************
	OLDIE - or Old IE. A script that finds the version of IE you're using,
	and redirects if lower than the set parameter.
	[[ Created by Ryan McLaughlin, www.DaoByDesign.com ]]
*******************************************************************************/
var browser		= navigator.appName
var ver			= navigator.appVersion
var thestart	= parseFloat(ver.indexOf("MSIE"))+1 //This finds the start of the MS version string.
var brow_ver	= parseFloat(ver.substring(thestart+4,thestart+7)) //This cuts out the bit of string we need.

 if ((browser=="Microsoft Internet Explorer") && (brow_ver == 7))  {
    document.write('<link rel="stylesheet" type="text/css" href="http://www.napierscott.com/html/css/ie7style.css" />');
  } else if ((browser=="Microsoft Internet Explorer") && (brow_ver == 6))  {
    document.write('<link rel="stylesheet" type="text/css" href="http://www.napierscott.com/html/css/ie6style.css" />');
  } else  {
    document.write('<link rel="stylesheet" type="text/css" href="http://www.napierscott.com/html/css/styleprime.css" />');
  }


//-->
