// JavaScript Document

todayIs = new Date();
todayIs = todayIs.getTime();
popupExpiresMS = new Date();
popupExpiresMS.setTime(todayIs + 48 * 60 * 60 * 1000);

function setCookie(name, value, expires, path, domain, secure) {
  // first delete any cookies
  //Delete_Cookie(name, path, domain);
  
  var curCookie = name + "=" + value +

      ((expires) ? "; expires=" + popupExpiresMS.toGMTString() : "") +

      ((path) ? "; path=" + path : ";path=/") +

      ((domain) ? "; domain=" + domain : "") +

      ((secure) ? "; secure" : "");

  document.cookie = curCookie;
}

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(CName)
{
username=getCookie(CName);
if (username!=null && username!="")
  {
  return true;
  }
else
  {  
	return false;
  }
}

function Delete_Cookie( name, path, domain ) {
if ( getCookie( name ) ) document.cookie = name + "=" +
( ( path ) ? ";path=" + path : "") +
( ( domain ) ? ";domain=" + domain : "" ) +
";expires=Thu, 01-Jan-1970 00:00:01 GMT";
}


