function checkMemberStatus()
{
/*
	var statusDiv = document.getElementById("memberStatus");
	var isLoggedIn = "";
	if (readCookie("IsMember") == "True" || readCookie("IsSubscriber") == "True")
		isLoggedIn = readCookie("FirstName") + " " + readCookie("LastName") + ", you are logged in. <a style=\"color:white;font-size:7pt;\" href=\"http://www.playwrightshorizons.org/phmember/LogOut.aspx\">Log out</a>&nbsp;|&nbsp;<a style=\"color:white;font-size:7pt\" href=\"http://www.playwrightshorizons.org/changepassword.asp\">Change password</a>&nbsp;&nbsp;";
	else
		isLoggedIn = "Not a member? <a style=\"color:white;font-size:7pt;\" href=\"http://www.playwrightshorizons.org/memberregistration.asp\">Register here</a>";
	statusDiv.innerHTML = isLoggedIn;
*/
}
function readCookie(name) 
{
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) 
	{
		var c = ca[i];
		while (c.charAt(0)==' ') 
			c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) 
			return c.substring(nameEQ.length,c.length);
	}
	return null;
}

