bool HippoGridInfo::getAutoUpdate()
{
	if(isSecondLife())
		return false;
	else
		return mAutoUpdate;
}
bool HippoGridInfo::getUPCSupported()
{
	if(isSecondLife())
		return false;
	else
		return mUPCSupported;
}
bool HippoGridInfo::supportsInvLinks()
{
	if(isSecondLife())
		return true;
	else
		return mInvLinks;
}
const std::string& HippoGridInfo::getGridOwner() const {
	if(isSecondLife()) {
		static const std::string ll = "Linden Lab";
		return ll;
	} else {
		return this->getGridName();
	}	
}