// JavaScript Document
function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}

function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
{
  x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
  y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
  x=x.replace(/^\s+|\s+$/g,"");
  if (x==c_name)
    {
    return unescape(y);
    }
  }
}

function checkCookie()
{
var visited=getCookie("visited");
  if (visited=true)
  {
  }
else
  {
	var stay=confirm("This website contains sexually explicit material, and is for adult viewing only. If you are under the age of 18, please select 'CANCEL' immediately. By selecting 'OK,' you agree that you are at least 18 years of age and you are of legal age in your area to view sexually explicit material.")
	if (!stay) 
	{
	  window.location="http://www.lifehack.org/articles/lifestyle/learn-something-new-every-day.html"
	} else {
	  setCookie("visited",true,30);
	}
  }
}



