
var days = 0;
var myCookie;
  function getCookie(name) {
    name += "="; // append '=' to name string
    var i = 0; // index of first name=value pair
    while (i < myCookie.length) {
      var offset = i + name.length; // end of section to compare with name string
      if (myCookie.substring(i, offset) == name) { // if string matches
        var endstr = myCookie.indexOf(";", offset); // locate end of name=value pair
        if (endstr == -1) endstr = myCookie.length;
        return unescape(myCookie.substring(offset, endstr)); // return cookie value section
      }
      i = myCookie.indexOf(" ", i) + 1; // move i to next name=value pair
      if (i == 0) break; // no more values in cookie string
    }
    return null; // cookie not found
  }

function setCookie(name, value, expire) {
//alert("expire = " + expire);
          document.cookie = name + "=" + escape(value)
          + ((expire == null) ? "" :
            ("; expires=" + expire))
}
function visited()
{
	var expDate = new Date();
	var expiry = 3 * 24 * 60 * 60 * 1000;
	expDate.setTime( expDate.getTime() + expiry );
	expire = expDate.toGMTString();
	//alert("Expire = "+ expire);
	setCookie("cyber","yes",expire);
}
function Go()
{
myCookie = document.cookie;
if(getCookie("cyber") != "no")
{
if (confirm(
// -------------- Modify only the next Line --------------- //
"100% FREE 52 Lesson eCourse That Teaches You How To Make Money Online... Even If You've Never Made Money Before.\n\n ->->  Let Internet Experts Teach You - FREE!\n ->->  52 Lessons - Each Lesson is Delivered About Every 3 Days. \n ->->  Subscribe Below To Receive Your 100% FREE 'How To Make Money Online eCourse'.\n\n Please Use Your Regular Email Address or You'll Miss Out On All The Money Making Strategies The Experts Use To Succeed. \n **** All personal information is kept strictly confidential. It is never sold or given to any third party. ****\n\n If You Are Really Serious About Making Money Online... PLEASE Subscribe To This 100% FREE eCourse and Start Your Money-Making Online Adventure TODAY! !"))
// -------------- Stop Editing Here --------------- //
{
	visited();
	document.cyber.button.click();
}
else
{
	visited();
}
}
//reset();
}
function reset()
{
setCookie("cyber",null,null);
}
//End

