function getLast(s, num)
	{
	return s.substr(s.length - num, num);
	}


function approveAd(tagpos)
	{
	var last = getLast(location.href, 7);

	if(last.toLowerCase() == "?google")
		{
		if(tagpos == "Right3")
			return false;
		}

	return true;
	}


function FI_OAS_RICH(tagpos)
	{
	if(approveAd(tagpos))
		OAS_RICH(tagpos);
	}

