//  ------ start cookies ------
//  retrieving a cookie
function getCookie(name) {
	var cname = name + "=";
	var dc = document.cookie;
	if (dc.length > 0) {
		begin = dc.indexOf(cname);
		if (begin != -1) {
			begin += cname.length;
			end = dc.indexOf(";", begin);
			if (end == -1) end = dc.length;
			return unescape(dc.substring(begin, end)); }
	}
	return null
}

//  setting a cookie
function setCookie(name, value, expires, path, domain, secure) {
	document.cookie = name + "=" + escape(value) + 
	((expires == null) ? "" : "; expires=" + expires.toGMTString()) +
	((path == null) ? "" : "; path=" + path) +
	((domain == null) ? "" : "; domain=" + domain) +
	((secure == null) ? "" : "; secure");
}

//set to expire on December 31, 2004 at 11:59:59
var expiration = new Date(2006, 12, 31);
//expiration.setTime(957781199400);
//  ------ eind cookies ------


//  ------ start fucpopup ------
function pop() {
	if ((navigator.appVersion.indexOf("MSIE") > 0) && (parseInt(navigator.appVersion) >= 4)) {
		if (!getCookie('fucpopup') || getCookie('fucpopup')!=-1) {
			setCookie("fucpopup", parseInt(-1), expiration);
			TripodShowPopup();
		}
	}
}

function TripodShowPopup() 
{
window.alert('Please Note: Only the first 3 gallery pages can be watched for free! \nMembers have access to All Pictures and All Series.');
}


//  ------ eind fucpopup ------
