// JavaScript Document
var browser = navigator.userAgent;
var vers = browser.indexOf('MSIE 6');
if (vers != -1) {
	vers = "IE6";
	window.location = "index_IE6.php";
}

