function checkWinWidth() {
	var agent = navigator.userAgent.toLowerCase();
	this.major = parseInt(navigator.appVersion);
	this.ie = (agent.indexOf("msie") != -1);
	this.ie4 = (this.ie && (this.major >= 4));


//theNonMagicFrameMover

if (!this.ie4) {
		if ( (parseInt( (window.innerWidth - 748)/2) ) >= 2) document.location.href = "theNonMagicFrameMover.php?dWidth=" + ((window.innerWidth - 748)/2);
		else document.location.href = "index2.php";
	}
	else {
		if ( (parseInt( (document.body.offsetWidth - 748)/2) ) >= 2) document.location.href = "theNonMagicFrameMover.php?dWidth=" + ((document.body.offsetWidth - 748)/2);
		else document.location.href = "index2.php";
	}
}

