<!--
function checkInnerWidth() {
	var x,y;
	var fullx = screen.availWidth;
	var fully = screen.availHeight;
	if (self.innerHeight) // all except Explorer
	{
		x = self.innerWidth;
		y = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
			// Explorer 6 Strict Mode
	{
			x = document.documentElement.clientWidth;
			y = document.documentElement.clientHeight;
	}
	else if (document.body) // other Explorers
	{
			x = document.body.clientWidth;
			y = document.body.clientHeight;
	}
	
	if (y < 550) {
		window.open('flash/index_window.html', 'main', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=0,left=0,screenX=0,screenY=0,width=' + fullx + ',height=' + fully);
	} else {
		location.href ='flash/index.html';
	}
}
//-->
