if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
	var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
	
	if (ieversion<=6)
	document.write('<link type="text/css" rel="stylesheet" href="css/style_sheetie6.css" />')
		
	else if (ieversion<=8)
	document.write('<link type="text/css" rel="stylesheet" href="css/style_sheet.css" />')
	}
		
	else
	 document.write('<link type="text/css" rel="stylesheet" href="css/style_sheet.css" />')






// -------------------------- Old Script ------------------------

//if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
//var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
//	if (ieversion<=6)
//	window.location.replace("ie6/")		
//	}
		
//else
// document.write("")