<!--
/*******************************************************************************
	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)) //By default the min. IE ver is set to 6. Change as desired.
	{
	window.location="http://www.jewelclark.com/refrac/furnacemain_ie6.html"; //URL to redirect to.
	}
//-->


/*This code is here to redirect web users using IE6 or older because the css float attribute used to create the layout on the furnace thumbnails page is not supported. This code will redirect the user to a furnace page (still in frames) created with tables to ensure proper layout. The pics are the links and will go to pages that load into the frame for each furnace in the folder furnaceDescriptions_ie6*/
