<!--
function getCookie(cookieName) {
	var cookieFoundAt;
	var cookieValue;
 
	cookieFoundAt = document.cookie.indexOf(cookieName + "=");

	if (cookieFoundAt < 0)   {
		cookieValue = null;
	} else {
		cookieFoundAt = document.cookie.indexOf("=",cookieFoundAt);
		cookieFoundAt++;
		cookieEnd = document.cookie.indexOf(";", cookieFoundAt);
		if (cookieEnd == -1) cookieEnd = document.cookie.length - 1;
		cookieValue =document.cookie.substring(cookieFoundAt,cookieEnd);
	}

	return cookieValue;
}

function setCookie(cookieName, cookieValue, cookiePath, cookieExpires) {
	cookieValue = escape(cookieValue);
	if (cookieExpires == "") {
		var curDate = new Date();
		curDate.setDate(curDate.getDate() + 1);
		cookieExpires = curDate.toGMTString();
	}

	if (cookiePath != "") {
		cookiePath = ";Path=" + cookiePath;
	}

	document.cookie = cookieName + "=" + cookieValue + ";expires=" + cookieExpires + cookiePath;
}

function checkReqs() {
	var usrAgent = navigator.userAgent.toLowerCase();
	var bVer = parseInt(navigator.appVersion);
	var bIE = (usrAgent.indexOf("msie") != -1) && (usrAgent.indexOf("opera") == -1);
	var bIE4 = (bIE && (bVer >= 4));
	var bWin = (usrAgent.indexOf("win") != -1);
	var bWin95d = ((usrAgent.indexOf("windows 95") != -1) || (usrAgent.indexOf("win95") != -1) || (usrAgent.indexOf("windows 3.1") != -1));
	var bVal = (bIE4 && bWin && !bWin95d);
	return bVal;
}

setCookie("cEnabled","true","","");
var alreadySeen = getCookie("cAdInt");
var cookiesEnabled = getCookie("cEnabled");

if (alreadySeen == null && cookiesEnabled && checkReqs()) {
	window.location = "/showInt.html?" + escape(window.location.href);
}
//-->
