function detectBlocker(ContainerAd, ContainerBackup)
{
	var ison = true;
	$$('#'+ContainerAd+' a').each(function(link)
			{
		        if(link.readAttribute('href') != '' && link.readAttribute('href') != '#')
		        {
		        	ison = false;
		        	throw $break;
		        }
			}
	);
	
	if (ison == true)
	{
		$(ContainerAd).hide();
		$(ContainerBackup).show();

	}
	else
	{
		$(ContainerBackup).hide();
		$(ContainerAd).show();
	}
}