function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function eraseCookie(name) {
	createCookie(name,"",-1);
}

var cookieVal = readCookie ('ageOK');
if ((cookieVal == "") || (cookieVal == null)) {
	var answer = confirm("THIS SITE CONTAINS SEXUALLY EXPLICIT ADULT MATERIAL. \n\nBy clicking 'OK' below you are certifying under penalty of purjury that: \n\n1) You are legally allowed to view porn (over 18 or 21 years old depending on your location, and not a registered sex offender) \n\n2) You are not offended by gay porn or the discussion of gay sex \n\n3) You are not an agent or attorney for any government, governmental agency or branch, law enforcement agency, or military agency or branch. \n\n4) You pledge not to use your viewing experience against the publisher, provider, or designer of this site.  You release indemnify and hold harmless the providers, owners, models and creators of this site from any and all liability arising from your use of this site. \n\nOtherwise You Must Click 'Cancel' And Leave Now!")
	if (answer){
		createCookie ('ageOK','Age Confirmed',0);
	}
	else{
		window.location = "http://images.google.com/images?q=gay+oral+loads";
	}
}
