//animate login procedure
function toggle_LOGIN(checkID,controlID) {
   if ((document.getElementById(checkID).style.display == 'none')) 
   { 
	  Effect.Fade(controlID);
   } else { 
      Effect.Appear(controlID);
   } 
 Effect.toggle(checkID,'slide');
}


//privatelabel patch
var patt1=new RegExp("privatelabel=dayspring");
var patt2=new RegExp("privatelabel=matrix");
if(patt1.test(location.href) == true) {
	if(getCookie('privatelabel') == 'matrix' || !getCookie('privatelabel')) {
		setCookie('privatelabel','dayspring',365);
		window.location.reload();
	}
}
if(patt2.test(location.href) == true) {
	if(getCookie('privatelabel') == 'dayspring' || !getCookie('privatelabel')) {
		setCookie('privatelabel','matrix',365);
		window.location.reload();
	}
}


	
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 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;
}

