
//---------------------------------------------------
// Globals
//---------------------------------------------------

//var base = "http://gold/petondemand/";
var base = "http://www.petondemand.com/";

//---------------------------------------------------
// Cookies
//---------------------------------------------------

function GetCookie(sName)
{
      var aCookie = window.document.cookie.split("; ");

      for (var i=0; i < aCookie.length; i++)
      {
        var aCrumb = aCookie[i].split("=");
        if (sName == aCrumb[0]) 
        {
            if ( aCrumb.length == 1 ) return "";

            //alert(unescape(aCrumb[1]));
            return unescape(aCrumb[1]);
        }
      }

  return "";
}

function SetCookie(sName, sValue)
{
  date = new Date(2020,1,1);

  if ( sValue.length > 0 ) window.document.cookie = sName + "=" + escape(sValue) + "; expires=" + date.toGMTString();
  else window.document.cookie = "";
}


function DeleteCookie(sName)
{
  window.document.cookie = sName + "="
}


