function getCookie(c_name)
{
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=");
  if (c_start!=-1)
    {
    c_start=c_start + c_name.length+1;
    c_end=document.cookie.indexOf(";",c_start);
    if (c_end==-1) c_end=document.cookie.length;
    return unescape(document.cookie.substring(c_start,c_end));
    }
  }
return "";
}

function checkCookie()
{
username=getCookie('myusername');
if (username!=null && username!="")
  {
  // alert('Welcome again '+username+'!');
  }
else
  {
	  //test
	  //window.location="http://localhost/osuarez/loginseriously.html";

      //live
	  window.location="http://www.osuarez.net/loginseriously.html";

  }
}

function check2Cookie(user2,adminlogin)
{
username=getCookie('myusername');
if (adminlogin) {
	document.write('adminlogin=' + adminlogin);
} else {

  if (username!=null && username!="")
    {
  // alert('Welcome again '+username+'!');
    }
  else
  {
	  //test
	  //window.location="http://localhost/osuarez/loginseriously.html";
    //live
	  window.location="http://www.osuarez.net/loginseriously.html";
  }
}
}



function SetCookie (name, value)  {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (argc > 2) ? argv[2] : null;
var path = (argc > 3) ? argv[3] : null;
var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false;
document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain)) +
((secure == true) ? "; secure" : "");
}
function DeleteCookie () { 
var exp = new Date();
exp.setTime (exp.getTime() - 1000000000);  // This cookie is history
var cval = GetCookie ('FreeStuffL');
document.cookie ='FreeStuffL' + "=" + cval + "; expires=" + exp.toGMTString();    
}
function cookieCreater () {
if(GetCookie('FreeStuffL') == null) {
var FreeStuffL_Name =  prompt ("What name do you want to go by?", "" );
if (FreeStuffL_Name != null && FreeStuffL_Name != "") {
var expdate = new Date (); 
expdate.setTime(expdate.getTime() + (24 * 60 * 60 * 1000 * 365)); 
SetCookie('FreeStuffL', FreeStuffL_Name, expdate);  
alert ("You now are logged in!  From now on, when you come to this page, you will be forwarded to the Password Protected Members-Only Area.  Please do not tell anyone your entry code.  At this new page, you will be shown a list of functions.  Have fun!");
location.href = "cookie-in.html";
   }
}
else {
DeleteCookie ();
cookieCreater ();
}
}

//if(GetCookie('FreeStuffL') != null) {
//location.href="cookie-in.html";
//}

function check() {
var tester = document.login.numOne.value + document.login.numTwo.value;
if (tester == "") {
alert ("I'm sorry, that code is not correct.");
}
else
{
if (tester == document.login.numThree.value) {
alert ("That is correct!");
cookieCreater ();
}
else {
alert ("Nope!");
      }
   }
}


