
verifyPPC = function()
{
	//alert("inside verifyPPC");

	// get the div object
	divPhoneAds = document.getElementById( "PhoneAds" );

	// see if there's anything in it
	if ( divPhoneAds.childNodes[1].innerHTML == "" )
	{
		divPhoneAds.innerHTML = "";
		divPhoneAds.style.marginBottom = 0;
		divPhoneAds.style.marginTop = "-12px";
		divPhoneAds.style.backgroundImage = "none";
	}

	return;
}


