//checkBrowserHeight();

attachEventListener(window, "resize", checkBrowserHeight, false);


function checkBrowserHeight(isFlash)
{
	var theHeight = getBrowserHeight();
	
	if (theHeight == 0) {
		var resolutionCookie = document.cookie.match(/(^|;)tmib_res_layout[^;]*(;|$)/);

		if (resolutionCookie != null)
			setStylesheet(unescape(resolutionCookie[0].split("=")[1]));
		
		addLoadListener(checkBrowserHeight);
		
		return false;
	}

	/*alert(theHeight);
	if (theHeight > 800) {
		//setStylesheet("1024 x 768");
		document.cookie = "tmib_res_layout=" + escape("1024 x 768");
	}
	else {
		//setStylesheet("");
		document.cookie = "tmib_res_layout=";
	}*/
	
	if (!isFlash)
		document.getElementById('content').style.height = (theHeight - 279) + 'px';
	
	return true;
};




function getBrowserHeight()
{
	if (window.innerHeight)
		return window.innerHeight;
	else 
	if (document.documentElement && document.documentElement.clientHeight != 0)
		return document.documentElement.clientHeight;
	else 
	if (document.body)
		return document.body.clientHeight;
	
	return 0;
};


function getBrowserWidth()
{
	if (window.innerWidth)
		return window.innerWidth;
	else 
	if (document.documentElement && document.documentElement.clientWidth != 0)
		return document.documentElement.clientWidth;
	else 
	if (document.body)
		return document.body.clientWidth;
	
	return 0;
};


/*
function setStylesheet(styleTitle)
{
	var currTag;

	if (document.getElementsByTagName)
	{
		for (var i = 0; (currTag = document.getElementsByTagName("link")[i]); i++) {
			if (currTag.getAttribute("rel").indexOf("style") != -1 && currTag.getAttribute("title")) {
				currTag.disabled = true;

				if (currTag.getAttribute("title") == styleTitle)
					currTag.disabled = false;
			}
		}
	}
	
	return true;
};*/
