
checkBrowserWidth();
attachEventListener(window, "resize", checkBrowserWidth, false);

// function to check browser width and switch css stylesheet
function checkBrowserWidth() {
	theWidth = getBrowserWidth();

	if (theWidth == 0) {
		var resolutionCookie = document.cookie.match(/(^|;)tmib_res_layout[^;]*(;|$)/);

		if (resolutionCookie != null) {
			setStylesheet(unescape(resolutionCookie[0].split("=")[1]));
		}

		addLoadListener(checkBrowserWidth);
		return false;
	}

	if (theWidth >= 1010) {
		setStylesheet("1024 x 768");
		document.cookie = "tmib_res_layout=" + escape("1024 x 768");

		if (document.all) {
			setStylesheet("ie 1024 x 768");
			document.cookie = "tmib_res_layout=" + escape("ie 1024 x 768");
			//alert("hello");
		}
	}
	else {
		setStylesheet("");
		document.cookie = "tmib_res_layout=";
	}
	return true;
}


// function to find current width of browser
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 to switch stylesheets
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
				if(currTag.getAttribute("title").indexOf("1024 x 768") != -1 && document.all && theWidth >= 1010) {
					currTag.disabled = false;
					//alert(currTag.href);
				}
				if(currTag.getAttribute("title") == "print") currTag.disabled = false
			}
		}
	}
	return true;
}
