<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>rkgblog &#187; Google</title>
	<link>http://www.rimmkaufman.com/rkgblog</link>
	<description>observations on web marketing, paid search, and website effectiveness.</description>
	<pubDate>Wed, 16 Jul 2008 21:12:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>Search Engines From The Engineering Perspective: Notes on MSN&#8217;s migration from API v4 to v 5.1</title>
		<link>http://www.rimmkaufman.com/rkgblog/2008/07/16/msn-api-v51-upgrade/</link>
		<comments>http://www.rimmkaufman.com/rkgblog/2008/07/16/msn-api-v51-upgrade/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 20:34:10 +0000</pubDate>
		<dc:creator>Alan Rimm-Kaufman</dc:creator>
		
	<dc:subject>Code</dc:subject>
	<dc:subject>Microsoft</dc:subject>
	<dc:subject>SEM</dc:subject>
	<dc:subject>Google</dc:subject><dc:subject>code</dc:subject><dc:subject>google</dc:subject><dc:subject>microsoft</dc:subject><dc:subject>SEM</dc:subject>
		<guid isPermaLink="false">http://www.rimmkaufman.com/rkgblog/2008/07/16/msn-api-v51-upgrade/</guid>
		<description><![CDATA[<p>Our thanks to the MSN engineers for the many calls and emails clarifying the V5.1 API docs.  These are places we hit snags.</p>]]></description>
			<content:encoded><![CDATA[<p>I noticed our engineering team was taking an unusually long time to upgrade our MSN systems from MSN API version 4 to version 5.1, so I asked about it. </p>
<p>&#8220;Everything changed,&#8221; our project lead replied, &#8220;and the documentation is pretty poor.&#8221; </p>
<p>In general, one of the characteristics of a good API is stability. Once published, partners in the outside world build code which depend intimately on the API spec.  Well-designed APIs evolve slowly, adding and removing features gracefully so partners can adjust their apps to the improvements.   </p>
<p>MSN jerked the rudder hard in a new direction going to v 5.1.  Below is a list of pitfalls our engineers encountered.  Hopefully this list will help others struggling with MSN&#8217;s docs. </p>
<p>Beyond <a href="http://www.rimmkaufman.com/rkgblog/2008/07/07/ppc-share-june-2008/">MSN&#8217;s business challenges competing again Google and Yahoo</a>, this list demonstrates some of the technical challenges MSN is facing with their codebase.  To their credit, the MSN API team has responded quickly and knowledgeably to our requests.  For that we are grateful.  We appreciate the technical help we receive from MSN, and we hope their API stabilizes relatively quickly. </p>
<p>If any MSN folks are reading this, if it would be helpful, our project lead on this recent API upgrade  would be glad to share his experiences with you folks on how in the future this could go more smoothly for both sides.</p>
<p>For contrast, about the same time period, our engineers upgraded our platform from Google API v11 to v12. </p>
<p>The Google API upgrade took 20 minutes.</p>
<p>To be fair, Google v11 to v12  was an extremely small and gradual API tweak, a handful of type changes and other little details.  Comparing the Google 20 minutes to MSN&#8217;s many developer-days of effort is comparing apples to oranges.  I would say, though, that Google&#8217;s API advances more gradually and more thoughtfully, making Google an easier technical partner than the other engines.</p>
<p>Again, our thanks to the MSN engineers for fielding so many of calls and emails to clarify the docs.  The following email snippet indicates some of the places our engineers hit snags.</p>
<blockquote>
<p>There there were more of these, but here is a brief list.   In overall they changed the external interface, including names, enumerations and methods.  This was more like a full rewrite than an upgrade.  My biggest negative on the list is the <u>documentation</u>, as this was the cause of much of our frustrations. </p>
<p>And to give credit - MSN responded quickly and knowledgeably to our requests.</p>
<ul>
<li>
<div>.Net2/asmx (Administration, CustomerManagement, NotificationManagement interfaces) .Net3 (or 3.5?)/wcf  (CampaignManagement, Reporting interfaces)</div>
<ul>
<li>
<div>changed xml structure (authentication, etc)</div>
</li>
<li>
<div>enforced xml sequence</div>
</li>
<li>
<div>appears to be that the upgrade is not full, likely an internal deadline was not met</div>
</li>
</ul>
</li>
<li>
<div>Renamed many fields and classes to comply with industry standards</div>
<ul>
<li>
<div>API is for machine communication, so the name only matters to developers, who has to redo the code now</div>
</li>
</ul>
</li>
<li>
<div>Changed method enumerations</div>
<ul>
<li>
<div>most of these are 1-to-1 renaming enums, what is the point?</div>
</li>
<li>
<div>eg. removing underscores from EasternTime_US_Canada</div>
</li>
</ul>
</li>
<li>
<div>Xml arrays for NegativeKeywords (yes, no longer notkeywords)</div>
<ul>
<li>
<div>fine, although web-interface uses comma separated list</div>
</li>
</ul>
</li>
<li>
<div>Date type of fields</div>
<ul>
<li>
<div>communicate as 3 xml tags: year, month, day</div>
</li>
<li>
<div><a href="http://adcentercommunity.com/blogs/api/archive/2008/06/19/how-to-set-no-end-date-for-an-ad-group.aspx">link to docs</a></div>
<ul>
<li>
<div>looks like a bug workaround, as field supposed to be nullable!</div>
</li>
</ul>
</li>
</ul>
</li>
<li>
<div>Inherited classes (eg: Ad to TextAd and MobileAd)</div>
<ul>
<li>
<div>readonly &#8220;Type&#8221; field is set by derived class type</div>
</li>
<li>
<div><a href="http://msdn.microsoft.com/en-us/library/bb671952.aspx">http://msdn.microsoft.com/en-us/library/bb671952.aspx</a></div>
</li>
<li>
<div>creating ads as Ad xml tag with xml attribute of TextAd, but eliminate Type field during soap operations, as it is readonly&#8230;</div>
</li>
</ul>
</li>
<li>
<div>API DOCUMENTATION</div>
<ul>
<li>
<div>bad navigation (needs to click through many pages to get to the right page, unless you know what you need, and use the sidebar then)</div>
</li>
<li>
<div>INCORRECT information</div>
<ul>
<li>
<div>Campaign BudgetLimitType field for a while listed v4 enumerations! - incorrect hyperlink (simple MSN internal curl could discover these after removing the old docs from their internal website, like what we do with our website :-))</div>
</li>
<li>
<div>Parameter substitution in some Ad fields were listed without substituion (appears to be fixed by now)</div>
</li>
</ul>
</li>
<li>
<div>offline version for windows framework only</div>
</li>
<li>
<div>xml code snippets are limited and started to appear in June (middle of the upgrade process)</div>
</li>
</ul>
</li>
<li>
<div>Why to have fields, which are reserved for future use? (like v4 had APIFlags, which never made to production, and now is eliminated)</div>
<ul>
<li>
<div>Nice to see the ideas, where MSN might go</div>
</li>
<li>
<div>But has no value for an API, and makes documentation readability worse as it litters the information with useless stuff</div>
</li>
</ul>
</li>
<li>
<div>V5 was retired ~2 months before deadline, and 5.1 took its place (5.1 had some new reserved for future use fields, AND expanding int to long fields)</div>
<ul>
<li>
<div>not a big deal, but what is the point to publish deadlines?</div>
</li>
</ul>
</li>
</ul>
<p>&nbsp;</p>
</p>
</blockquote>
<p align="center"><img height="209" alt="corn" src="http://www.rimmkaufman.com/rkgblog/../content/corn.jpg" width="298" /></p>
<p>&nbsp;</p>
<a href="http://www.rimmkaufman.com/rkgblog/tag/code" rel="tag">code</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/google" rel="tag">google</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/microsoft" rel="tag">microsoft</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/sem" rel="tag">SEM</a><p class="akst_link"><div class="sharethisdiv">
<a href="http://www.rimmkaufman.com/rkgblog/?p=931&amp;akst_action=share-this"  title="Email, post to del.icio.us, etc." id="akst_link_931" class="akst_share_link" rel="noindex nofollow">Share this post</a> (via email, Digg, Delicious, etc)
</div>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.rimmkaufman.com/rkgblog/2008/07/16/msn-api-v51-upgrade/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Social Networking Is Not A Business &#8212; But It Might Be Soon</title>
		<link>http://www.rimmkaufman.com/rkgblog/2008/07/14/social-networking-is-not-a-business-but-it-might-be-soon/</link>
		<comments>http://www.rimmkaufman.com/rkgblog/2008/07/14/social-networking-is-not-a-business-but-it-might-be-soon/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 14:23:44 +0000</pubDate>
		<dc:creator>Alan Rimm-Kaufman</dc:creator>
		
	<dc:subject>Yahoo</dc:subject>
	<dc:subject>Business</dc:subject>
	<dc:subject>Google</dc:subject><dc:subject>Business</dc:subject><dc:subject>google</dc:subject><dc:subject>yahoo</dc:subject>
		<guid isPermaLink="false">http://www.rimmkaufman.com/rkgblog/2008/07/14/social-networking-is-not-a-business-but-it-might-be-soon/</guid>
		<description><![CDATA["In social networks, on the other hand, users show up to find friends; ads are, at best, irrelevant to that goal."  Byran Urstadt, Tech Review]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.technologyreview.com/Biztech/20922/?a=f">Excellent article</a> in this month&#8217;s Tech Review by Bryant Urstadt on the business side of social networks.   Highly recommended.  TR site registration required, but free. </p>
<p>A few tidbits catching  my attention:</p>
<ul>
<li>Facebook impressions run 13 to 16 cents CPM.  For comparison, our clients in aggregate <a href="http://www.rimmkaufman.com/rkgblog/2008/07/07/ppc-share-june-2008/">pay $10 eCPM on Google, and $6 eCPM</a> on Yahoo.  The fact FB can&#8217;t command higher CPMs speaks volumes to how advertisers value those impressions.</li>
<li>Regarding the &#8220;content adjacency&#8221; problem, where ads on the social nets might run alongside content objectionable to advertisers, Chamath Palihapitiya Facebook&#8217;s VP states that the FB community self-moderates by flagging inappropriate material.  Urstadt comments:<br />
<blockquote><p>Palihapitiya deliberately or otherwise, may be missing the point: advertisers dislike rude content not merely because it might reflect badly on their brands, but because the people reading such stuff are probably not thinking about buying many things that advertisers are selling. </p></blockquote>
</li>
<li>MySpace generated $800mil in annual ad revenue (2007 stat?) Surprising to me, I would have guessed less.</li>
<li>Urstadt again, emphasis mine:<br />
<blockquote><p>Advertising on <strong>Google works because visitors come to Google looking for specific information.</strong>  If a user who types in &#8220;scooter&#8221; in the site&#8217;s search field is hoping to buy a scooter, the keyword results that appear at the right of the search results can be more useful than the results themselves.  <strong>In social networks, on the other hand, users show up to find friends; ads are, at best, irrelevant to that goal.</strong>  The click-through rates on social networking sites bear this out.  While around <strong>2 percent of Google users actually click on a given ad</strong> (and the number is much higher when users are conducting searches for purchasing reasons)<strong>, fewer than 0.04% of Facebook users do</strong>, according to a media buyer&#8217;s report obtained last year by the Silicon Valley blog Valleywag.</p></blockquote>
</li>
</ul>
<p>Worth checking out.</p>
<p>The article: <a href="http://www.technologyreview.com/Biztech/20922/?a=f">Social Networking Is Not A Business &#8212; But It Might Be Soon</a>, Bryant Urdstat, July/August 2008 TR Review</p>
<p align="center"><img height="168" alt="mountain-lake" src="http://www.rimmkaufman.com/rkgblog/../content/mountain-lake.jpg" width="225" /></p>
<a href="http://www.rimmkaufman.com/rkgblog/tag/business" rel="tag">Business</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/google" rel="tag">google</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/yahoo" rel="tag">yahoo</a><p class="akst_link"><div class="sharethisdiv">
<a href="http://www.rimmkaufman.com/rkgblog/?p=928&amp;akst_action=share-this"  title="Email, post to del.icio.us, etc." id="akst_link_928" class="akst_share_link" rel="noindex nofollow">Share this post</a> (via email, Digg, Delicious, etc)
</div>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.rimmkaufman.com/rkgblog/2008/07/14/social-networking-is-not-a-business-but-it-might-be-soon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PPC Bid Management: Requirement #3, The Feedback Loop</title>
		<link>http://www.rimmkaufman.com/rkgblog/2008/07/09/ppc-bidding-3/</link>
		<comments>http://www.rimmkaufman.com/rkgblog/2008/07/09/ppc-bidding-3/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 16:41:46 +0000</pubDate>
		<dc:creator>George Michie</dc:creator>
		
	<dc:subject>Web Marketing</dc:subject>
	<dc:subject>SEM</dc:subject>
	<dc:subject>Google</dc:subject><dc:subject>google</dc:subject><dc:subject>SEM</dc:subject>
		<guid isPermaLink="false">http://www.rimmkaufman.com/rkgblog/2008/07/09/ppc-bidding-3/</guid>
		<description><![CDATA[Part 3 of a 10 part series on the attributes of top-tier bid management systems.  Today we focus on the power of feeding post-sale information into your bidding system.]]></description>
			<content:encoded><![CDATA[<p>For many companies, the true value of a transaction can&#8217;t be measured at the time of a sale.  Because of this, maximizing the opportunities of PPC advertising requires feeding that post-transaction information back into your bidding system so that your bids are based on the truest possible picture of an ad&#8217;s value.  Not all systems can handle this backfeed loop, so if this type of post-sale information is material to your firm you may need to find a new system.</p>
<p>Let&#8217;s walk through some examples that have been valuable to our clients:</p>
<ul>
<li><strong>Margin Data:</strong>  For any retailer with variable product margins or who are highly promotional businesses, <a href="http://searchengineland.com/080513-213913.php">bidding to actual margin dollar efficiency</a> rather than sales dollar efficiency is critically important.  However, some of our clients don&#8217;t have the COG data available at the time of checkout.  By providing us this data in an off-line feed, we get the benefits of margin bidding without the client having to re-engineer their website.</li>
<li><strong>Lead Valuation:</strong>  For any business using its website to collect leads it&#8217;s important to incorporate back-end data on the ultimate value of those leads into the bidding and analysis.  For banks and lending institutions that lead quality may be measured by account creation and funding, credit scores of applicants, or other well established indicators.  For businesses with long sales cycles the information may be more qualitative and can be as simple as a &#8220;Good&#8221; or &#8220;Bad&#8221; flag based on the initial call with the sales rep.  Any information that can meaningfully distinguish between the more promising leads and the less promising ones will be valuable to a good bidding system.</li>
<li><strong>Customer Type:</strong>  Some companies cater more to businesses than consumers.  They know that the lifetime value of a business customer is much greater than that of an individual.  Knowing that certain types of keywords drive more business customers than others is therefore an important consideration in setting bids and evaluating success metrics.</li>
<li><strong>Credit Allocation:</strong>  As with margin data, some clients pass us information in the pixel about which marketing program their systems think drove the order.  Others pass us that information after the fact.  We prefer to &#8220;see&#8221; all the orders regardless of the client&#8217;s order allocation so that we can help add insight into those difficult allocation issues.  Our clients have benefited from discussions to the effect: &#8220;We noticed that X% of orders your system is allocating to affiliates came through non-brand search ads within 30 minutes of the order &#8212; does that make sense?&#8221;  We can then credit or discredit those orders as the client sees fit. </li>
<li><strong>Match-Back Data:</strong>  For good reason, many catalogers and other direct marketers are more interested in attracting sales from new customers than existing customers.  If this is important to your firm, feeding that information into the bidding process, so that more value can be placed on ads that tend to generate more new-to-file customers, can be a big win.</li>
<li><strong>Frauds and Cancels:</strong>  Many retailers, particularly in electronics and jewelry, see relatively high fraud and cancel rates.  Using a back feed to knock out credit for orders that didn&#8217;t stick can be important, particularly if some types of keywords are more susceptible to these problems than others.</li>
<li><strong>Anything Else:</strong>  There aren&#8217;t many limits here.  Whatever information relating to the above, some combination thereof, or anything else that differentiates value can be handled with back feeds.</li>
</ul>
<p>A top-tier bidding system sets bids based on the observed value of the traffic generated by each ad, phrase, or collection of related phrases.  For many advertisers, the true value of the traffic isn&#8217;t perfectly clear at the time of the order.  The ability to take information after the fact and fold it into the bidding algorithm can be the difference between success and futility in PPC advertising for these firms.</p>
<p>Previous posts in this series are here:</p>
<p><a href="http://www.rimmkaufman.com/rkgblog/2008/05/26/bidding-technology-requirement-1/">Bid System Imperative #1: Strong Statistical Foundation</a><br />
<a href="http://www.rimmkaufman.com/rkgblog/2008/06/16/bidding-requirement-2/">Bid System Imperative #2: Deep Flexible Tracking<br />
</a></p>
<a href="http://www.rimmkaufman.com/rkgblog/tag/google" rel="tag">google</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/sem" rel="tag">SEM</a><p class="akst_link"><div class="sharethisdiv">
<a href="http://www.rimmkaufman.com/rkgblog/?p=925&amp;akst_action=share-this"  title="Email, post to del.icio.us, etc." id="akst_link_925" class="akst_share_link" rel="noindex nofollow">Share this post</a> (via email, Digg, Delicious, etc)
</div>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.rimmkaufman.com/rkgblog/2008/07/09/ppc-bidding-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>June 2008 Google, Yahoo, Microsoft Paid Search Market Share</title>
		<link>http://www.rimmkaufman.com/rkgblog/2008/07/07/ppc-share-june-2008/</link>
		<comments>http://www.rimmkaufman.com/rkgblog/2008/07/07/ppc-share-june-2008/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 05:00:52 +0000</pubDate>
		<dc:creator>Alan Rimm-Kaufman</dc:creator>
		
	<dc:subject>Microsoft</dc:subject>
	<dc:subject>Yahoo</dc:subject>
	<dc:subject>Business</dc:subject>
	<dc:subject>SEM</dc:subject>
	<dc:subject>Google</dc:subject><dc:subject>Business</dc:subject><dc:subject>google</dc:subject><dc:subject>microsoft</dc:subject><dc:subject>SEM</dc:subject><dc:subject>yahoo</dc:subject>
		<guid isPermaLink="false">http://www.rimmkaufman.com/rkgblog/2008/07/07/ppc-share-june-2008/</guid>
		<description><![CDATA[<p>Looking at our agency's client base in aggregate, last month Google received 79% of our clients' ad dollars. Yahoo received 17%.  Microsoft received 5%.</p>]]></description>
			<content:encoded><![CDATA[<p>Looking at our agency&#8217;s client base in aggregate, last month Google received 79% of our clients&#8217; ad dollars. Yahoo received 17%.  Microsoft received 5%.</p>
<p>Here are the year-to-date ad spend share figures for our clients.</p>
<p align="center"><img height="157" alt="table-adspend-paid-search-share-june-2008" src="http://www.rimmkaufman.com/rkgblog/../content/table-adspend-paid-search-share-june-2008.png" width="282" /></p>
<p>Same data, graphed:</p>
<p align="center"><img height="323" alt="adspend-paid-search-share-june-2008" src="http://www.rimmkaufman.com/rkgblog/../content/adspend-paid-search-share-june-2008.png" width="352" /></p>
<p>Background: RKG manages pay-per-click advertising for over 100 online retailers.  Most are B2C.  Nearly all bring a direct-marketing perspective to paid search.  Our clients focus on ROI rather than CPC or CPM.  We&#8217;d suggest online retailers as a class are among the savviest and most demanding competitors in the click auctions.  Data from our agency may or not be representative of the total online advertising universe.</p>
<p>Our clients don&#8217;t establish <em>a priori</em> budgets by engine. Rather, our clients instruct us to buy as many clicks as possible which meet their marketing targets (revenue, margin, ROI, etc). Our portfolio bidding platform is highly effective at achieving these targets.</p>
<p>Thus, we&#8217;d suggest that the ad spend share data presented above is a reasonable proxy for click quality.  Click quality is a function of both the population using each engine, as well as the engines&#8217; skill at matching searches with relevant ads.</p>
<p>The main take-away from those data is Google&#8217;s staggering dominance of paid search.  Sometimes this obvious point seems forgotten in the mainstream business press.   In the paid search world, Google isn&#8217;t big, Google is <em>gigantic</em>.  And Microsoft isn&#8217;t small &#8212; Microsoft is <em>tiny</em>. </p>
<p>It seems logarithmic, like the Richter scale.  In terms of share of ad dollars, Yahoo almost is four times larger than Microsoft, and Google is almost five times larger Yahoo.  Rarely is the skew between the top three competitors in any field so dramatic. </p>
<p align="center"><img height="241" alt="june-adspend-paid-search-share-june-2008" src="http://www.rimmkaufman.com/rkgblog/../content/june-adspend-paid-search-share-june-2008.png" width="342" /></p>
<p>A smaller take-away from these data is Yahoo has upticked in each of the last four months, gaining share at Google&#8217;s expense.  However, the absolute size of that improvement is small, and doesn&#8217;t change the situation.</p>
<p>Which engines are driving sales to our clients?  Because our analysts and our technology manage campaigns to profit targets, and because those targets are typically consistent across the engines, it follows that our clients see roughly the same percentage of revenue from each engine as the corresponding ad spend. </p>
<p>Here&#8217;s that graph, tracked web sales by engine by month, aggregated across all our clients.</p>
<p align="center"><img height="317" alt="revenue-paid-search-share-june-2008" src="http://www.rimmkaufman.com/rkgblog/../content/revenue-paid-search-share-june-2008.png" width="389" /></p>
<p>Are the engines equally good at transforming impressions or clicks into ad revenue?  Nope.</p>
<p align="center"><img height="310" alt="impressions-paid-search-share-june-2008" src="http://www.rimmkaufman.com/rkgblog/../content/impressions-paid-search-share-june-2008.png" width="369" /></p>
<p>Google brings in an effective aggregate CPM of $10, versus Yahoo&#8217;s effective CPM of $6.  Microsoft commands an impressive $20 eCPM, but remember that is on tiny volume. </p>
<p>&nbsp;</p>
<p align="center"><img height="283" alt="click-paid-search-share-june-2008" src="http://www.rimmkaufman.com/rkgblog/../content/click-paid-search-share-june-2008.png" width="336" /></p>
<p>Google enjoys an effective aggregate CPC of 52c across all our clients&#8217; campaigns.  Yahoo and Microsoft come in about 17% lower, at 44c and 43c respectively.</p>
<p align="center">
<a href="http://www.google.com/search?q=summer "><img src='http://www.rimmkaufman.com/content/sunflower.JPG' alt='summer sun flowers' /></a></p>
<a href="http://www.rimmkaufman.com/rkgblog/tag/business" rel="tag">Business</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/google" rel="tag">google</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/microsoft" rel="tag">microsoft</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/sem" rel="tag">SEM</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/yahoo" rel="tag">yahoo</a><p class="akst_link"><div class="sharethisdiv">
<a href="http://www.rimmkaufman.com/rkgblog/?p=919&amp;akst_action=share-this"  title="Email, post to del.icio.us, etc." id="akst_link_919" class="akst_share_link" rel="noindex nofollow">Share this post</a> (via email, Digg, Delicious, etc)
</div>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.rimmkaufman.com/rkgblog/2008/07/07/ppc-share-june-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yahoo Serving Google Ads?  Advertisers take note!</title>
		<link>http://www.rimmkaufman.com/rkgblog/2008/06/20/googlehoo/</link>
		<comments>http://www.rimmkaufman.com/rkgblog/2008/06/20/googlehoo/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 13:31:03 +0000</pubDate>
		<dc:creator>George Michie</dc:creator>
		
	<dc:subject>Yahoo</dc:subject>
	<dc:subject>SEM</dc:subject>
	<dc:subject>Google</dc:subject><dc:subject>AdSense for Search</dc:subject><dc:subject>Danny Sullivan</dc:subject><dc:subject>google</dc:subject><dc:subject>Google syndication</dc:subject><dc:subject>search engine land</dc:subject><dc:subject>SEM</dc:subject><dc:subject>yahoo</dc:subject><dc:subject>Yahoo ad network</dc:subject><dc:subject>Yahoo Google Deal</dc:subject>
		<guid isPermaLink="false">http://www.rimmkaufman.com/rkgblog/2008/06/20/googlehoo/</guid>
		<description><![CDATA[Last week Google and Yahoo announced an agreement by which Yahoo would be allowed to selectively serve Google ads along side search results on Yahoo.com and Yahoo’s partner sites, and take advantage of Google’s Content ad platform as well.]]></description>
			<content:encoded><![CDATA[<p>Last week Google and Yahoo announced an agreement by which Yahoo would be allowed to selectively serve Google ads along side search results on Yahoo.com and Yahoo’s partner sites, and take advantage of Google’s Content ad platform as well.  Yahoo will have complete control over whether Google ads, Yahoo ads or some mixture are fired.</p>
<p>Back in April, Yahoo began a test with Google running Google ads on something like 3% of Yahoo impressions.  This was undoubtedly a “proof of concept” test, and apparently both parties were pleased with the results.  Why wouldn’t Google be pleased?  They picked up additional revenue simply by adding another, more substantial than average, syndication partner for its “AdSense for Search” product.  Yahoo clearly made more money serving Google ads than it made serving its own.</p>
<p>If federal regulators let this happen – a pretty big “if” – Google and Yahoo both win, and Microsoft would lose out.  Yahoo will have successfully fled from a hostile takeover bid by Microsoft by throwing itself into Google’s arms.</p>
<p>But what about the advertisers?</p>
<p><a href="http://daggle.com/">Danny Sullivan</a> asked me to opine on the impact of this, and the article is over on <a href="http://searchengineland.com/080620-062148.php">Search Engine Land</a>.</p>
<p>Let me know what you think!</p>
<a href="http://www.rimmkaufman.com/rkgblog/tag/adsense-for-search" rel="tag">AdSense for Search</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/danny-sullivan" rel="tag">Danny Sullivan</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/google" rel="tag">google</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/google-syndication" rel="tag">Google syndication</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/search-engine-land" rel="tag">search engine land</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/sem" rel="tag">SEM</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/yahoo" rel="tag">yahoo</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/yahoo-ad-network" rel="tag">Yahoo ad network</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/yahoo-google-deal" rel="tag">Yahoo Google Deal</a><p class="akst_link"><div class="sharethisdiv">
<a href="http://www.rimmkaufman.com/rkgblog/?p=901&amp;akst_action=share-this"  title="Email, post to del.icio.us, etc." id="akst_link_901" class="akst_share_link" rel="noindex nofollow">Share this post</a> (via email, Digg, Delicious, etc)
</div>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.rimmkaufman.com/rkgblog/2008/06/20/googlehoo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>May 08 Paid Search Share Steady, Google At 81%</title>
		<link>http://www.rimmkaufman.com/rkgblog/2008/06/05/paid-search-market-share-may-2008/</link>
		<comments>http://www.rimmkaufman.com/rkgblog/2008/06/05/paid-search-market-share-may-2008/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 17:14:24 +0000</pubDate>
		<dc:creator>Matthew Mierzejewski</dc:creator>
		
	<dc:subject>Yahoo</dc:subject>
	<dc:subject>Microsoft</dc:subject>
	<dc:subject>Business</dc:subject>
	<dc:subject>Web Marketing</dc:subject>
	<dc:subject>SEM</dc:subject>
	<dc:subject>Google</dc:subject><dc:subject>Business</dc:subject><dc:subject>google</dc:subject><dc:subject>microsoft</dc:subject><dc:subject>SEM</dc:subject><dc:subject>yahoo</dc:subject>
		<guid isPermaLink="false">http://www.rimmkaufman.com/rkgblog/2008/06/05/paid-search-market-share-may-2008/</guid>
		<description><![CDATA[May 2008 search engine share results aggregated across RKG clients: steady, no big change.  Google at 81%.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rimmkaufman.com/rkgblog/2008/05/05/paid-search-share-q1-08-google-up-yahoo-down-microsoft-steady">Each month</a> we report paid search share among our clients. </p>
<p>We take our   aggregate spend on Google, Yahoo, and MSN across all RKG clients and show how it breaks down by month, by engine. (Search and Content combined, but the data is heavy on Search) In addition, since advertising spend is set on economic goals and not engine favored, this approach removes search engine bias, seasonality and RKG growth. In other words, the allocation of spend reflects availability of quality clicks on each engine, and we&#8217;re using relative proportions.</p>
<p>May 2008 results: steady, no big change.</p>
<p><img src='http://www.rimmkaufman.com/content/searchenginesharemay2008.JPG' alt='paid search engine advertising market share trend' /></p>
<p>Google @ 80.8%<br />
Yahoo @ 14.5%<br />
MSN @ 4.7%</p>
<p>     <em>Google&#8217;s at ~81% because their clicks work. As for market share, no big change YTD.</em></p>
<p>Here&#8217;s a glimpse at CPCs across our client base for the month.</p>
<p><img src='http://www.rimmkaufman.com/content/may2008searchenginecostperclickrkg.JPG' alt='cost per click cpc google yahoo may 2008' /></p>
<p>     <em>The results: Google earns more per click.</em></p>
<p>Next, CPC trend by month, indexed so google = 100%. (This removes seasonality and RKG growth.)</p>
<p><img src='http://www.rimmkaufman.com/content/costperclickindexppcrkg.JPG' alt='cost per click trend search engine click quality' /></p>
<p>     <em>Pretty stable.  Google consistently has 10 to 20% higher CPC than Yahoo, MSN.</em></p>
<p>CPM (cost per thouand imps) for May across our clients:</p>
<p><img src='http://www.rimmkaufman.com/content/may2008searchengineCPMrkg.JPG' alt='effection CPM eCPM paid search google yahoo microsoft may 2008' /></p>
<p>     <em>MSN actually earns more per imp than Google, though on far far far fewer imps and clicks (our clients in aggregate bought 14 times as many clicks on Google vs MSN in May).</em></p>
<p>Trend in eCPM, indexed so G = 100% to remove seasonality and RKG growth:</p>
<p><img src='http://www.rimmkaufman.com/content/CPMindexppcrkg.JPG' alt='eCPM trend paid search google yahoo microsoft monetization ' /></p>
<p>     <em>Reveals that as we buy more traffic from MSN, we see eCPM decreasing.</em></p>
<p>Stay tuned for next month&#8217;s post!</p>
<a href="http://www.rimmkaufman.com/rkgblog/tag/business" rel="tag">Business</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/google" rel="tag">google</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/microsoft" rel="tag">microsoft</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/sem" rel="tag">SEM</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/yahoo" rel="tag">yahoo</a><p class="akst_link"><div class="sharethisdiv">
<a href="http://www.rimmkaufman.com/rkgblog/?p=896&amp;akst_action=share-this"  title="Email, post to del.icio.us, etc." id="akst_link_896" class="akst_share_link" rel="noindex nofollow">Share this post</a> (via email, Digg, Delicious, etc)
</div>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.rimmkaufman.com/rkgblog/2008/06/05/paid-search-market-share-may-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Money Can&#8217;t Buy You Love, Redux</title>
		<link>http://www.rimmkaufman.com/rkgblog/2008/06/03/live-hp-firefox/</link>
		<comments>http://www.rimmkaufman.com/rkgblog/2008/06/03/live-hp-firefox/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 18:50:10 +0000</pubDate>
		<dc:creator>Alan Rimm-Kaufman</dc:creator>
		
	<dc:subject>Microsoft</dc:subject>
	<dc:subject>Web Marketing</dc:subject>
	<dc:subject>Google</dc:subject><dc:subject>google</dc:subject><dc:subject>microsoft</dc:subject>
		<guid isPermaLink="false">http://www.rimmkaufman.com/rkgblog/2008/06/03/live-hp-firefox/</guid>
		<description><![CDATA[Microsoft to pay HP to make Live the default search engine in IE on new HP machines. Meanwhile,  Ffox adoption continues to grow.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=SMwZsFKIXa8"><img src='http://www.rimmkaufman.com/content/cantbuymelove.jpg' class="imgR"/></a><br />
Two weeks ago I quoted the Beatles that <a href="http://www.rimmkaufman.com/rkgblog/2008/05/22/live-search-cashback/">money can&#8217;t buy love</a>, doubting the long-term effectiveness of Microsoft&#8217;s JellyFish/Live CashBack strategy.</p>
<p>Now Microsoft has launched the next salvo in its attack, cutting a deal with HP to make Live the default browser on new HP machines. </p>
<p>From MSFT press release yesterday: </p>
<blockquote><p><a href="http://www.microsoft.com/presspass/press/2008/jun08/06-02HPToolbarPR.mspx?rss_fdn=Press%20Releases">&#8220;Microsoft Live Search Toolbar to Be Distributed on 2009 HP Consumer PCs&#8221;</a></p>
<p>REDMOND, Wash. — June 2, 2008 — Microsoft Corp. today announced that it has won a key distribution deal with HP, the world’s largest PC manufacturer, to install a Live Search-enabled toolbar on all HP consumer PCs planned to ship in the United States and Canada, beginning in January 2009. As part of this deal, the default search engine setting in the browser on all HP consumer PCs will also be set to Microsoft Live Search.</p></blockquote>
<p>Same day, different press release.  From ComputerWorld: </p>
<blockquote>
<p><a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&#038;taxonomyName=networking_and_internet&#038;articleId=9091959&#038;taxonomyId=16">Firefox on track to crack 20% share in July</a></p>
<p>June 2, 2008 (Computerworld)  Mozilla Corp.&#8217;s Firefox browser is on pace to hit the 20% market-share mark next month, a Web metrics company said today.  Firefox boosted its share by 0.6% in May, accounting for 18.4% of the browsers used during the month and putting it within shouting distance of a major milestone, according to Net Applications Inc. &#8220;Firefox is trending to hit 20% market share sometime in July,&#8221; said Vince Vizzaccaro, the company&#8217;s executive vice president of marketing, in an e-mail. </p></blockquote>
<p>Interesting.  Right off the bat, 1 in 5 of Microsoft&#8217;s pricey HP Live users are back to Google.</p>
<p>Dunno.  Still think this game all shakes down to <em>search quality. </em>  </p>
<p>Or, to be more precise,  to <em>perceived search quality</em>.</p>
<p>Which Mountain View has <em>locked up.</em></p>
<a href="http://www.rimmkaufman.com/rkgblog/tag/google" rel="tag">google</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/microsoft" rel="tag">microsoft</a><p class="akst_link"><div class="sharethisdiv">
<a href="http://www.rimmkaufman.com/rkgblog/?p=895&amp;akst_action=share-this"  title="Email, post to del.icio.us, etc." id="akst_link_895" class="akst_share_link" rel="noindex nofollow">Share this post</a> (via email, Digg, Delicious, etc)
</div>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.rimmkaufman.com/rkgblog/2008/06/03/live-hp-firefox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fast Pages, Tested to Perfection: Marissa Mayer at Google I/O</title>
		<link>http://www.rimmkaufman.com/rkgblog/2008/06/03/marissa-mayer-google-developers-conference/</link>
		<comments>http://www.rimmkaufman.com/rkgblog/2008/06/03/marissa-mayer-google-developers-conference/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 10:49:12 +0000</pubDate>
		<dc:creator>Larry Becker</dc:creator>
		
	<dc:subject>Web Effectiveness</dc:subject>
	<dc:subject>Web Usability</dc:subject>
	<dc:subject>Web Marketing</dc:subject>
	<dc:subject>Google</dc:subject><dc:subject>google</dc:subject><dc:subject>web effectiveness</dc:subject><dc:subject>Web Usability</dc:subject>
		<guid isPermaLink="false">http://www.rimmkaufman.com/rkgblog/2008/06/03/marissa-mayer-google-developers-conference/</guid>
		<description><![CDATA[Ever wondered how Google decides questions ranging from how many results to serve on a page, to the amount of whitespace with which to pad the logo and the most effective color with which to tint the sponsored link box at the top of the page?]]></description>
			<content:encoded><![CDATA[<p>Over at <a href="http://searchengineland.com/080530-082318.php">Search Engine Land,</a> a quick post from Barry Schwartz, highlights  a few takeways from Marissa Mayer&#8217;s speech at last week&#8217;s <a href="http://code.google.com/events/io/index.html">Google I/O Conference</a>.
</p>
<p>
If you&#8217;ve ever wondered how Google decides questions ranging from how many results to serve on a page, to the amount of whitespace with which to pad the logo and the most effective color with which to tint the sponsored link box at the top of the page, the answer,  not surprisingly, is A/B split testing.
</p>
<p>
Among the points Barry found most interesting are these 3:
 </p>
<blockquote><p>* The more search results per page, the less people search<br />
    The reason? Less search results mean faster returned results.<br />
    * 30 results per page would result in 20% less searches when compared to 10 results per page.<br />
    * Google cut the bloat out of Google Maps and noticed a 30% increase in usage
    </p></blockquote>
<p>
The implication is clear: When it comes to <a href="http://www.rimmkaufman.com/website-effectiveness">Website Effectiveness</a>, <strong>your site&#8217;s speed matters</strong>, a lot.
</p>
<p>
You&#8217;ll find more  nuggets Mayer shared  about Google&#8217;s design process in the News.com article:  <a href="http://news.cnet.com/8301-10784_3-9954972-7.html">We&#8217;re all guinea pigs in Google&#8217;s search experiment.</a></p>
<a href="http://www.rimmkaufman.com/rkgblog/tag/google" rel="tag">google</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/web-effectiveness" rel="tag">web effectiveness</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/web-usability" rel="tag">Web Usability</a><p class="akst_link"><div class="sharethisdiv">
<a href="http://www.rimmkaufman.com/rkgblog/?p=894&amp;akst_action=share-this"  title="Email, post to del.icio.us, etc." id="akst_link_894" class="akst_share_link" rel="noindex nofollow">Share this post</a> (via email, Digg, Delicious, etc)
</div>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.rimmkaufman.com/rkgblog/2008/06/03/marissa-mayer-google-developers-conference/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google&#8217;s Ad Preview Tool Gotchas You Should Know</title>
		<link>http://www.rimmkaufman.com/rkgblog/2008/06/02/ad-preview-tool/</link>
		<comments>http://www.rimmkaufman.com/rkgblog/2008/06/02/ad-preview-tool/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 15:03:43 +0000</pubDate>
		<dc:creator>Alan Rimm-Kaufman</dc:creator>
		
	<dc:subject>Web Marketing</dc:subject>
	<dc:subject>SEO</dc:subject>
	<dc:subject>SEM</dc:subject>
	<dc:subject>Google</dc:subject><dc:subject>google</dc:subject><dc:subject>SEM</dc:subject><dc:subject>seo</dc:subject>
		<guid isPermaLink="false">http://www.rimmkaufman.com/rkgblog/2008/06/02/ad-preview-tool/</guid>
		<description><![CDATA[Google's Ad Preview Tool (APT)  provides you more information about your search campaigns than you'd have otherwise.  But some advertisers mistakenly believe APT reveals more than it actually does.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re not familiar with Google&#8217;s <a href="https://adwords.google.com/select/AdTargetingPreviewTool">Ad Preview Tool</a>, jump over and check it out, as the Ad Preview Tool (APT) is the topic of today&#8217;s post. </p>
<p>APT provides you more information about your search campaigns than you&#8217;d have otherwise.  But some advertisers mistakenly believe APT reveals more than it actually does.</p>
<p>I&#8217;d argue the problem doesn&#8217;t rest with Google, but rather with advertisers&#8217; mental models of search results pages (<a href="http://en.wikipedia.org/wiki/Serp">SERP</a> s).</p>
<p>OK.   <a href="https://adwords.google.com/select/AdTargetingPreviewTool">APT</a>  lets you see a &#8220;clean&#8221; search results page for a given keyword, Google domain, display language, country, and geography.  For example, say you are a US Google advertiser based in NYC.  APT lets you check out your local ads in different regions nationwide without leaving your desk.</p>
<p>Some paid search advertisers (or their managers) search on their own company&#8217;s terms regularly (sometimes obsessively) to check the position of their ad relative to their competition.  Google does report daily <a href="http://adwords.google.com/support/bin/answer.py?answer=14075&amp;cbid=of93zd7ztuvg&amp;src=cb">average position</a> data, but that dry stat doesn&#8217;t reveal competitors&#8217; ranks, and doesn&#8217;t provide the visceral satisfaction of &#8220;making sure myself that our ads are where they should be&#8221; by pulling up the &#8220;actual&#8221; SERP.</p>
<p>But manually searching your own terms from one computer to check your own ads may not tell you the full story.</p>
<p>I mentioned the geography issue above &#8212; sitting in NYC, you shouldn&#8217;t (and wont) see your San Francisco campaigns.</p>
<p>Also, Google adjusts ad serving based on IP click-through rates.  If a given IP or (perhaps even user) shows a statistically significant anomalously high or low CTR for a given ad, Google may stop serving it. </p>
<p>An example: a major retailer with a strong focus in the (sorry for the obfu) widget category spends large sums advertising the single word term &#8220;widget&#8221; on Google.  As a result, their managers often search for &#8220;widget&#8221; to check their ad and their competitors&#8217; ads.  Obviously, they seldom click their own ad.  Because the CTR on this high-impression ad is effectively zero from within their corporate IP range, Google stopped showing their  ad to searchers at the corporate HQ building.  This caused some valid concern (&#8221;Why aren&#8217;t we showing up?!?&#8221;) until explained.</p>
<p>Enter the Ad Preview Tool.</p>
<p>&#8220;<a href="http://www.youtube.com/watch?v=aFXTJQY2SY4">Hallelujah</a> !&#8221;, advertisers rejoiced, &#8220;a way for us to get to the &#8216;true&#8217; SERPs, cleansed of geo effects and individual history effects and all other Google muck. Like the <a href="http://en.wikipedia.org/wiki/Platonism">platonic</a> simplicity of GoTo&#8217;s CPC-displayed-on-SERP approach.  Now we can keep an eye on on ads&#8217; true rank (and adjust bids to hang in position three). Hallelujah!&#8221;</p>
<p>Beyond the parenthetical bid-to-position stupidity (<a href="http://multichannelmerchant.com/webchannel/seo/bid-for-profit_0713/">B2P nearly always trashes advertiser profits</a> ), the problem with the prior paragraph is the notion of a true or pure or absolute SERP.</p>
<p>Because in 2008, my SERPs often aren&#8217;t your SERPs. </p>
<p>Google knows too much about me.  Where I live.  What feeds I read.  What I&#8217;ve searched on before.  What certain terms mean to me.  Fast: what is a <a href="http://www.google.com/search?q=%7Ebass">bass</a>?  For you, fish or instrument?</p>
<p>Google also varies SERPs to test new ads.  Google burns a small fraction of impressions &#8220;over-serving&#8221; baby ads so as to determine their <a href="http://searchengineland.com/071016-090124.php">QS</a> to <a href="http://googleblog.blogspot.com/2008/05/how-auctions-set-ad-prices.html">price ads &#8220;correctly&#8221;</a>.  I&#8217;d wager this sampling is essentially random over time, users, and data centers.  Again, this leads to some differences in SERPs between users.</p>
<p>Which brings me to my main point:</p>
<blockquote>
<p><strong>There is no such thing as a platonic or &#8220;true&#8221; universal SERP for a given phrase. </strong></p>
</blockquote>
<p>SERPs vary to some degree by user, by time of day, day of week, by geography, by IP, by Google data center, by user search history.  Who knows, maybe by Google market cap and <a href="http://www.googlelunarxprize.org/">phase of the moon</a>.  What is certain is that there are many many factors involved.</p>
<p>Sure, if you set an outrageously high maxbid, say $25 or $50 for &#8220;widget&#8221; (this time not obfu, just generic) and don&#8217;t set a campaign budget cap and do have a well-known brand name (thus high CTR) and do have OK ad copy and do have fair prices on your merchandise and and decent selection and do have reasonably usable site, then yes, with very high probability you&#8217;ll effectively &#8220;own&#8221; position #1.  And that would hold for just every user and every SERP in your geography.  (<a href="http://www.dell.com">Dell</a> takes this approach for many computer terms.)</p>
<p>Dominating the top may or may not make economic sense, may or may not make branding sense, but you can get there if you want.  Just spend enough. OK.  In the case of one advertiser determined to outspend all others, yes, the &#8220;true&#8221; SERP will always have big-spending-advertiser in the first position. </p>
<p>But that atypical. Usually several savvy big-spending advertisers jointly share the top of the page, jostling up and down a slot or two based on bidding algorithms, management ego, whatever.  As positions vary by bidding and are filtered through user geography and user search history, there&#8217;s no &#8220;true&#8221; PPC SERP in this case. And I&#8217;ll argue that that is OK.</p>
<p>&#8220;But wait,&#8221; you may be saying, &#8220;doesn&#8217;t APT reveal the True SERP?&#8221;</p>
<p>I think not, as APT also filters on the user data (here &#8220;user&#8221; means APT user, the advertiser). Let&#8217;s watch this in action.</p>
<p>I turned off cookies <em>(FFox: Tools &gt;&gt; Options &gt;&gt; Privacy &gt;&gt; Uncheck &#8220;Accept Cookies From Site&#8221; box),</em> logged out of Google, deleted  existing cookies <em>(FFox: Tools &gt;&gt; Clear Private Data &gt;&gt; Check &#8220;Cookies&#8221; box &gt;&gt; Clear Private Data Now&#8221;)</em> , closed all browser windows, and then opened a new browser.  Clean as a whistle.  I then went to <a href="https://adwords.google.com/select/AdTargetingPreviewTool">https://adwords.google.com/select/AdTargetingPreviewTool</a> directly.</p>
<p>In the tool, I specified &#8220;plumber&#8221; as the keyword, searching on &#8220;google.com&#8221;, language &#8220;English&#8221;, country &#8220;United States&#8221;, &#8220;All regions within this country&#8221;.</p>
<p align="center"><a href="http://www.rimmkaufman.com/rkgblog/../content/1.png"><img height="141" alt="1" src="http://www.rimmkaufman.com/rkgblog/../content/1-small.png" width="225" /></a></p>
<p>&nbsp;</p>
<p>One would expect APT to return national search results for &#8220;plumber&#8221;. After all, that&#8217;s what I asked for, and there are no cookies involved.  Here&#8217;s the result page. </p>
<p align="center"><a href="http://www.rimmkaufman.com/rkgblog/../content/1a.png"><img height="158" alt="1a" src="http://www.rimmkaufman.com/rkgblog/../content/1a-small.png" width="90" /></a></p>
<p>Despite my request, the page is clearly geo-targeted for my town, beautiful Charlottesville VA.  Half the paid ads are local ads: position 2, 4, 5, 7, and 8. So Google uses IP data, which we&#8217;d expect.</p>
<p>(Aside: I feel sorry for the guy in position 10 who  missed the concept of <a href="https://adwords.google.com/select/targeting.html">local targeting</a>.  Errr, C&#8217;ville is 750 miles from Grand Rapids, friend. Here&#8217;s a sympathy backlink:<a href="http://budgetplumbinggr.com/">Grand Rapids plumber</a> )</p>
<p>How about trying APT with hiding our true IP?  Turn off and purge cookies, close and restart browser, activate <a href="http://www.torproject.org/">Tor</a> , and back to APT</p>
<p>&nbsp;</p>
<p align="center"><a href="http://www.rimmkaufman.com/rkgblog/../content/iaminaustria.png"><img height="128" alt="i am in austria" src="http://www.rimmkaufman.com/rkgblog/../content/iaminaustria-small.png" width="225" /></a></p>
<p>Hello from Austria!  That&#8217;s where I <a href="http://en.wikipedia.org/wiki/Onion_routing">came out of the onion</a>, it seems.  OK.  Complete the form (&#8221;plumber&#8221;, &#8220;United States&#8221;, &#8220;google.com&#8221;, etc). and submit:</p>
<p align="center"><a href="http://www.rimmkaufman.com/rkgblog/../content/forbid-a.png"><img height="103" alt="forbid-a" src="http://www.rimmkaufman.com/rkgblog/../content/forbid-a-small.png" width="225" /></a></p>
<p>APT doesn&#8217;t like anonymous proxies.  Banned!  Couldn&#8217;t use APT for about a day.  (Unless I was logged in with cookies on, then it would let me through.)</p>
<p>So let&#8217;s wrap this up.  My suggestions:</p>
<ul>
<li>
<div>Don&#8217;t get hung up trying to determine the universal &#8220;true&#8221; SERP for a given search phrase. It doesn&#8217;t exist.</div>
</li>
<li>Realize my SERP might differ a bit from your SERP for the same phrase at the same time. </li>
<li>
<div>
<div>Realize even your SERP for the same same phrase might vary a bit when you re-query in a short interval.</div>
</div>
</li>
<li>
<div>
<div>If you want to know where your ads are on the page, <strong>rely on Google&#8217;s average position stats.</strong>  Averages are powerful summaries of the whole population of observations.  Use them.</div>
</div>
</li>
<li>
<div>If a term is performing <em>above</em> your economic hurdle and it isn&#8217;t already at the top of the page, spend more and move that ad up!  (And then ask yourself why your bidding system allowed it to get out of position&#8230;)</div>
</li>
<li>
<div>On the other hand, if a term is performing <em>below</em> your economic hurdle, lower your bid!  (And again ask why your bid system overspent on it&#8230;)</div>
</li>
<li>
<div>Do use APT to monitor your local campaigns in different geographies.</div>
</li>
<li>
<div>Don&#8217;t use APT to monitor your national campaigns.</div>
</li>
<li>
<div>To avoid getting banned, avoid the sneaky stuff (using automated scripts to scrape APT, using anonymizing proxies, etc<img src="http://www.rimmkaufman.com/content/icon_smiley.gif" alt="smile" />)
</div>
</li>
</ul>
<p>Happy Monday, all!</p>
<p><em>Bonus tip: our Google reps confirmed that the natural results on APT are &#8220;authentic&#8221;, too. A small SEO tidbit there&#8230;</em></p>
<a href="http://www.rimmkaufman.com/rkgblog/tag/google" rel="tag">google</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/sem" rel="tag">SEM</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/seo" rel="tag">seo</a><p class="akst_link"><div class="sharethisdiv">
<a href="http://www.rimmkaufman.com/rkgblog/?p=892&amp;akst_action=share-this"  title="Email, post to del.icio.us, etc." id="akst_link_892" class="akst_share_link" rel="noindex nofollow">Share this post</a> (via email, Digg, Delicious, etc)
</div>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.rimmkaufman.com/rkgblog/2008/06/02/ad-preview-tool/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Accidentally Reveals Internal SEO/SEM Metrics on Public Search Results</title>
		<link>http://www.rimmkaufman.com/rkgblog/2008/05/25/google-internal-metrics/</link>
		<comments>http://www.rimmkaufman.com/rkgblog/2008/05/25/google-internal-metrics/#comments</comments>
		<pubDate>Sun, 25 May 2008 14:31:15 +0000</pubDate>
		<dc:creator>Alan Rimm-Kaufman</dc:creator>
		
	<dc:subject>SEO</dc:subject>
	<dc:subject>SEM</dc:subject>
	<dc:subject>Google</dc:subject><dc:subject>google</dc:subject><dc:subject>SEM</dc:subject><dc:subject>seo</dc:subject>
		<guid isPermaLink="false">http://www.rimmkaufman.com/rkgblog/2008/05/25/google-internal-metrics/</guid>
		<description><![CDATA[Interesting  news items from SEL, TechCrunch, and SearchEngineJournal: screenshots of internal Google pricing metrics slipping out onto public SERPs.  Stale news, perhaps fake, but interesting!]]></description>
			<content:encoded><![CDATA[<p>These   are stale news items.   There&#8217;s some chance they are fake. And I have no clue how to interpret them.  But   they certainly are interesting&#8230;</p>
<p>From Techcrunch back in October:<br />
<a href="http://valleywag.com/tech/don.t-be-evil/google-assigns-dollar-value-to-search-results-317140.php">Google assigns dollar value to search results</a></p>
<p align="center"><a href="http://valleywag.com/tech/don.t-be-evil/google-assigns-dollar-value-to-search-results-317140.php"><img height="83" alt="adwords-gg-score" src="http://www.rimmkaufman.com/content/adwords-gg-score.jpg" width="225" /></a></p>
<p>From SEL back in April: <br />
<a href="http://searchengineland.com/080429-084947.php">Google Showing Ranking Scores On AdWords?</a> </p>
<p align="center"><a href="http://searchengineland.com/080429-084947.php"><img height="188" alt="adwords-pscore" src="http://www.rimmkaufman.com/content/adwords-pscore.jpg" width="324" /></a></p>
<p> From Search Engine Journal, same event: <br /><a href="http://www.searchenginejournal.com/google-leaks-quality-score-variables-pscore-mcpc-and-thresh-in-search-results/6801/">Google Leaks Quality Score Variables (Pscore, mCPC and thresh) in Search Results</a><br /></p>
<p align="center"><a href="http://www.searchenginejournal.com/google-leaks-quality-score-variables-pscore-mcpc-and-thresh-in-search-results/6801/"><img src='http://www.rimmkaufman.com/content/honda011.jpg' alt='honda mscore pscore' /></a></p>
<p>Hattip: <a href="http://training.seobook.com/google-ranking-value">SEOBook</a></p>
<a href="http://www.rimmkaufman.com/rkgblog/tag/google" rel="tag">google</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/sem" rel="tag">SEM</a>, <a href="http://www.rimmkaufman.com/rkgblog/tag/seo" rel="tag">seo</a><p class="akst_link"><div class="sharethisdiv">
<a href="http://www.rimmkaufman.com/rkgblog/?p=861&amp;akst_action=share-this"  title="Email, post to del.icio.us, etc." id="akst_link_861" class="akst_share_link" rel="noindex nofollow">Share this post</a> (via email, Digg, Delicious, etc)
</div>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.rimmkaufman.com/rkgblog/2008/05/25/google-internal-metrics/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
