// JavaScript Document
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("<div style='height:55px;width:100%;background-color:#de0000;text-align:center;border-bottom:1px solid #222;'><h3 style='color:#fff;padding-top:16px;'>You are using IE6! This site does not support IE6 please upgrade to one the following: <a href='http://www.microsoft.com/windows/Ie/'>Microsoft IE8</a> | <a href='http://www.mozilla.com/firefox'>Mozilla Firefox</a> | <a href='http://www.google.com/chrome'>Google Chrome</a></h3></div>");
}
}
//if((screen.width<=800) && (screen.height<=600)){
	//window.location.replace('http://example.com/800-600-or-less');
//}else{
	//window.location.replace('http://example.com/greater-than-800-600');
//}
