<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WhatClinic.com Blog &#187; Philip Boyle</title>
	<atom:link href="http://blog.whatclinic.com/author/philip-boyle/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.whatclinic.com</link>
	<description>Sharing Tech, Marketing &#38; Health 2.0 information</description>
	<lastBuildDate>Sat, 04 Sep 2010 18:29:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How To Add A Facebook Like Button (The Basic Version)</title>
		<link>http://blog.whatclinic.com/2010/08/how-to-add-a-facebook-like-button-the-basic-version.html</link>
		<comments>http://blog.whatclinic.com/2010/08/how-to-add-a-facebook-like-button-the-basic-version.html#comments</comments>
		<pubDate>Tue, 24 Aug 2010 10:43:06 +0000</pubDate>
		<dc:creator>Philip Boyle</dc:creator>
				<category><![CDATA[Stuff we've learned]]></category>
		<category><![CDATA[Web/Tech]]></category>
		<category><![CDATA[facebook like buttons]]></category>
		<category><![CDATA[whatclinic.com]]></category>

		<guid isPermaLink="false">http://blog.whatclinic.com/?p=1243</guid>
		<description><![CDATA[submit_url = "http://blog.whatclinic.com/2010/08/how-to-add-a-facebook-like-button-the-basic-version.html"; I decided a couple of days ago to add Facebook&#8217;s like button to this blog and then to our website&#8217;s homepage. Seeing as how it&#8217;s part of Facebook&#8217;s vision of the future of the web I thought it&#8217;d be really straightforward to do. It turns out it is, but the documentation on [...]]]></description>
			<content:encoded><![CDATA[
<!-- FINE TUNE BUTTON POSITION FOR METHOD A AND B HERE -->
    <span style="margin-top: 10px;
				 margin-right: 10px;
				 margin-bottom: 10px;
				 margin-left: 10px; 
				 
				 float: Right;">

	<script type="text/javascript">
	submit_url = "http://blog.whatclinic.com/2010/08/how-to-add-a-facebook-like-button-the-basic-version.html";
	</script>
    <script type="text/javascript" src="http://www.bizsugar.com/evb/button.php"></script>
	</span><div class="tweetmeme_button" style="float: right; margin-top: 11px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F08%2Fhow-to-add-a-facebook-like-button-the-basic-version.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F08%2Fhow-to-add-a-facebook-like-button-the-basic-version.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I decided a couple of days ago to add Facebook&#8217;s like button to this blog and then to our website&#8217;s homepage. Seeing as how it&#8217;s part of Facebook&#8217;s vision of the future of the web I thought it&#8217;d be really straightforward to do. It turns out it is, but the documentation on Facebook itself is really unclear so I made a lot of mistakes along the way. Read on and learn from mine so you don&#8217;t waste your own time too.</p>
<p>Here are the steps you need to take to get ready to add a Facebook like button to one of your pages, be it a web application, a blog, or something else.</p>
<p><strong>1. Decide who is going to administrate your page</strong></p>
<p>You need a Facebook ID to get this working. Since Facebook&#8217;s terms and conditions mean you can only have one account yourself, you either need to use your existing account, or set up a new one for someone in your office who doesn&#8217;t have one already. Otherwise you run the risk of having the account with administrator privileges deleted unexpectedly.</p>
<p>Bear in mind that the person who administrates your page may not work for you forever, so be careful who you choose, and ideally you should have more than one administrator.</p>
<p>To get your Facebook ID go to your own profile and click on your Facebook profile picture. Your ID will be at the end of the URL in your browser&#8217;s address box.</p>
<p><strong>2. Add Open Graph meta tags</strong></p>
<p>If you want people to like a webpage that isn&#8217;t a Facebook page itself then you&#8217;ll need to add Open Graph meta tags to its &lt;head&gt; section. The tags you need can be found on the <a title="Facebook like button meta tags" href="http://developers.facebook.com/docs/reference/plugins/like">like button page on Facebook</a>. Here are the tags for our blog&#8217;s homepage:</p>
<blockquote><p>&lt;meta property=&quot;og:title&quot; content=&quot;WhatClinic.com Blog Homepage&quot;/&gt;<br />
&lt;meta property=&quot;og:type&quot; content=&quot;blog&quot;/&gt;<br />
&lt;meta property=&quot;og:image&quot; content=&quot;http://blog.whatclinic.com/wp-content/uploads/2010/08/facebook-logo.png&quot;/&gt;<br />
&lt;meta property=&quot;og:url&quot; content=&quot;http://blog.whatclinic.com/&quot;/&gt;<br />
&lt;meta property=&quot;og:site_name&quot; content=&quot;WhatClinic.com Blog&quot;/&gt;<br />
&lt;meta property=&quot;fb:admins&quot; content=&quot;587106975&quot;/&gt;</p></blockquote>
<p>Go back to the like button page and use their widget to generate the code you need to add the button to your page. There are a few basic choices for font, colour scheme, size and so on, but you&#8217;re probably best off sticking with the defaults (except for width, which you should adjust for the width of the page you&#8217;re adding the button to).</p>
<p>The iframe version of the code for our blog homepage looks like this:</p>
<blockquote><p>&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.whatclinic.com%2F&amp;layout=standard&amp;show_faces=true&amp;width=292&amp;action=like&amp;colorscheme=light&amp;height=80&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:600px; height:80px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;</p></blockquote>
<p>There is also what is called the XFBML version of the code which is much simpler but requires you to use the <a title="Javascript SDK and Facebook" href="http://developers.facebook.com/docs/reference/javascript/">Javascript SDK</a>. The XFBML version would look like this:</p>
<blockquote><p>&lt;fb:like href=&quot;http://blog.whatclinic.com/&quot; width=&quot;292&quot;&gt;&lt;/fb:like&gt;</p></blockquote>
<p>Once you&#8217;ve added the meta tags (including the Facebook ID of your administrator), and added the iframe or XFBML code to your page you should be ready to go.</p>
<p><strong>Adding like buttons to a WordPress blog</strong></p>
<p>Getting the Facebook like button onto every page of your WordPress blog is easy &#8211; you could just paste the code you&#8217;ve created above into one of your template files or a sidebar widget. There are potential problems with this though, in that you need to specify the URL of the page to be liked, and if you include the like buttons for posts on the homepage that gets a little complicated.</p>
<p>What I&#8217;ve done is put the overall like button for the blog in a widget on the right hand side of the page and used a WordPress plugin called <a href="http://johnny.chadda.se/projects/wp-facebook-like/">WP Facebook Like</a> to add the like button to the bottom of the content on individual posts&#8217; pages.</p>
<p>The only problem with this is that the plugin (and the other one I tested) only added two of the Open Graph meta tags needed. I added the missing (generic) meta tags using the <a href="http://semperfiwebdesign.com/">All in One SEO plugin</a>.</p>
<p><strong>Problems</strong></p>
<p>When I set about doing this I found a lot of the Facebook pages were unclear about what was needed to get started. I kept seeing references to having a Facebook App ID. This isn&#8217;t necessary to get started with Facebook like buttons. You just need your Facebook user ID as described above.</p>
<p>As an aside, if you are building an app go to the <a title="facebook app setup page" href="http://developers.facebook.com/setup/">Facebook app setup page</a> on developers.facebook.com and fill in your details. Every time I used it I ended up getting an error page, so I thought it hadn&#8217;t worked. By accident I ended up on another developers page at <a title="Facebook developers page" href="http://www.facebook.com/developers/">www.facebook.com/developers/</a> and it turned out that even though I&#8217;d received an error message each time I used the previous page, it had actually setup the apps and given them IDs and so on.</p>
<p>I had also just set up a Facebook page for WhatClinic.com just before I started looking into the like buttons. This added a certain amount of confusion to the process too. I added a like button to the website&#8217;s homepage, including adding the required meta tags, and without telling me anything Facebook created a new WhatClinic.com Homepage page, which I was the administrator of. I thought this would be confusing for people who had already liked WhatClinic.com, so I deleted this new page and pointed the like button at the original Facebook page for WhatClinic.com instead.</p>
<p>Nothing too difficult in that, but it leaves me with one unanswered question: seeing as I setup the like button for blog.whatclinic.com I should be the admin for it too, but I&#8217;m not. This might have something to do with trying to set it up with a Facebook app ID the first time I tried, but now I have no idea who is the administrator of that page (or even if a page exists for it!). I&#8217;ll be contacting Facebook support about this and asking them but I&#8217;m not holding out much hope for a fast response&#8230;</p>
<p><strong>Have your say</strong></p>
<p>Have you added Facebook like buttons to your own app or site? Did it all go smoothly or did you run into some of the same problems? Let us know in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.whatclinic.com/2010/08/how-to-add-a-facebook-like-button-the-basic-version.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>New Prices And Reviews Pages</title>
		<link>http://blog.whatclinic.com/2010/08/new-prices-and-reviews-pages.html</link>
		<comments>http://blog.whatclinic.com/2010/08/new-prices-and-reviews-pages.html#comments</comments>
		<pubDate>Thu, 12 Aug 2010 10:02:22 +0000</pubDate>
		<dc:creator>Philip Boyle</dc:creator>
				<category><![CDATA[Stuff we've learned]]></category>
		<category><![CDATA[Web/Tech]]></category>
		<category><![CDATA[prices]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://blog.whatclinic.com/?p=1229</guid>
		<description><![CDATA[submit_url = "http://blog.whatclinic.com/2010/08/new-prices-and-reviews-pages.html"; We&#8217;ve just added a new set of navigation tabs to our search results pages after A/B testing them for a week. They didn&#8217;t improve conversion by any significant amount but by adding them we give ourselves the flexibility to add new ways of slicing our data, and hopefully capturing more traffic. First [...]]]></description>
			<content:encoded><![CDATA[
<!-- FINE TUNE BUTTON POSITION FOR METHOD A AND B HERE -->
    <span style="margin-top: 10px;
				 margin-right: 10px;
				 margin-bottom: 10px;
				 margin-left: 10px; 
				 
				 float: Right;">

	<script type="text/javascript">
	submit_url = "http://blog.whatclinic.com/2010/08/new-prices-and-reviews-pages.html";
	</script>
    <script type="text/javascript" src="http://www.bizsugar.com/evb/button.php"></script>
	</span><div class="tweetmeme_button" style="float: right; margin-top: 11px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F08%2Fnew-prices-and-reviews-pages.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F08%2Fnew-prices-and-reviews-pages.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="size-full wp-image-1231" title="new-tabs" src="http://blog.whatclinic.com/wp-content/uploads/2010/08/new-tabs.png" alt="WhatClinic.com navigation tabs" width="450" height="99" /></p>
<p>We&#8217;ve just added a new set of navigation tabs to our search results pages after A/B testing them for a week. They didn&#8217;t improve conversion by any significant amount but by adding them we give ourselves the flexibility to add new ways of slicing our data, and hopefully capturing more traffic.</p>
<p>First of all, we&#8217;ve moved the map link which was on the top right hand side of the page into one of the tabs. This has already increased usage of the maps pages on the site. Secondly, we added two new types of pages, one which pulls together all the reviews for the clinics in the search results, the other all the prices.</p>
<p>These two tabs are brand new pages with their own URLs and are SEO&#8217;d to capture traffic relating to reviews and ratings of clinics and treatment prices. This is an SEO experiment in itself. All of the data on these pages exists on other pages. For instance, all the reviews of each clinic exist in their own profile, but these new pages pull together what we think are a useful set of reviews so they can be compared in one place. The same goes for the prices.</p>
<p>Here&#8217;s what a normal search results page looks like: <a title="dublin dentists" href="http://www.whatclinic.com/dentists/ireland/county-dublin/dublin"> Dentists in Dublin</a></p>
<p><a title="dublin dentists" href="http://www.whatclinic.com/dentists/ireland/county-dublin/dublin"><img class="alignnone size-full wp-image-1237" title="dublin-search" src="http://blog.whatclinic.com/wp-content/uploads/2010/08/dublin-search.png" alt="" width="450" height="270" /></a></p>
<p>Here&#8217;s the reviews page: <a title="reviews of dublin dentists" href="http://www.whatclinic.com/dentists/ireland/county-dublin/dublin/reviews">Reviews of Dentists in Dublin</a></p>
<p><a title="reviews of dublin dentists" href="http://www.whatclinic.com/dentists/ireland/county-dublin/dublin/reviews"><img class="alignnone size-full wp-image-1239" title="dublin-reviews" src="http://blog.whatclinic.com/wp-content/uploads/2010/08/dublin-reviews.png" alt="" width="450" height="270" /></a></p>
<p>And here&#8217;s the prices page: <a title="dublin dentists prices" href="http://www.whatclinic.com/dentists/ireland/county-dublin/dublin/prices">Prices of Dentists in Dublin</a></p>
<p><a title="dublin dentists prices" href="http://www.whatclinic.com/dentists/ireland/county-dublin/dublin/prices"><img class="alignnone size-full wp-image-1238" title="dublin-prices" src="http://blog.whatclinic.com/wp-content/uploads/2010/08/dublin-prices.png" alt="" width="450" height="270" /></a></p>
<p>Time will tell whether or not the search engines think these pages are useful, but we&#8217;ll be keeping a close eye on how their traffic and usage grows in the coming months.</p>
<p>Have you any experience with re-slicing your own data? How did it work out for you? Leave us a comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.whatclinic.com/2010/08/new-prices-and-reviews-pages.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linking To Our Search Results</title>
		<link>http://blog.whatclinic.com/2010/08/linking-to-our-search-results.html</link>
		<comments>http://blog.whatclinic.com/2010/08/linking-to-our-search-results.html#comments</comments>
		<pubDate>Wed, 11 Aug 2010 15:33:15 +0000</pubDate>
		<dc:creator>Philip Boyle</dc:creator>
				<category><![CDATA[Health 2.0]]></category>
		<category><![CDATA[link building]]></category>
		<category><![CDATA[whatclinic.com]]></category>

		<guid isPermaLink="false">http://blog.whatclinic.com/?p=1223</guid>
		<description><![CDATA[submit_url = "http://blog.whatclinic.com/2010/08/linking-to-our-search-results.html"; We&#8217;ve had quite a lot of interest in the last couple of days about our name change. If you&#8217;re thinking of writing a blog post or tweeting or sharing on Facebook, why not give an example of why the site might be useful? For instance, my friends are always asking me about [...]]]></description>
			<content:encoded><![CDATA[
<!-- FINE TUNE BUTTON POSITION FOR METHOD A AND B HERE -->
    <span style="margin-top: 10px;
				 margin-right: 10px;
				 margin-bottom: 10px;
				 margin-left: 10px; 
				 
				 float: Right;">

	<script type="text/javascript">
	submit_url = "http://blog.whatclinic.com/2010/08/linking-to-our-search-results.html";
	</script>
    <script type="text/javascript" src="http://www.bizsugar.com/evb/button.php"></script>
	</span><div class="tweetmeme_button" style="float: right; margin-top: 11px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F08%2Flinking-to-our-search-results.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F08%2Flinking-to-our-search-results.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>We&#8217;ve had quite a lot of interest in the last couple of days about our name change. If you&#8217;re thinking of writing a blog post or tweeting or sharing on Facebook, why not give an example of why the site might be useful?</p>
<p>For instance, my friends are always asking me about finding a good dentist in Dublin so I point them at:</p>
<p><a title="dentist dublin city" href="http://www.whatclinic.com/dentists/ireland/county-dublin/dublin">http://www.whatclinic.com/dentists/ireland/county-dublin/dublin</a></p>
<p>No one I know admits to using Botox, but if they did they might like to see the list of Botox Clinics in the UK:</p>
<p><a title="botox uk" href="http://www.whatclinic.com/beauty-clinics/uk/botox">http://www.whatclinic.com/beauty-clinics/uk/botox</a></p>
<p>Just do a search on our homepage for any treatment in your location and copy the resutling URL to get your link.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.whatclinic.com/2010/08/linking-to-our-search-results.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing WhatClinic.com</title>
		<link>http://blog.whatclinic.com/2010/08/introducing-whatclinic-com.html</link>
		<comments>http://blog.whatclinic.com/2010/08/introducing-whatclinic-com.html#comments</comments>
		<pubDate>Thu, 05 Aug 2010 14:27:04 +0000</pubDate>
		<dc:creator>Philip Boyle</dc:creator>
				<category><![CDATA[Health 2.0]]></category>
		<category><![CDATA[Start ups]]></category>
		<category><![CDATA[revahealth.com]]></category>
		<category><![CDATA[whatclinic.com]]></category>

		<guid isPermaLink="false">http://blog.revahealth.com/?p=1198</guid>
		<description><![CDATA[submit_url = "http://blog.whatclinic.com/2010/08/introducing-whatclinic-com.html"; On August 10th we are changing our name from RevaHealth.com to WhatClinic.com. The reasons behind the change are very straightforward. WhatClinic.com is easier to remember, easier to spell, and it does a much better job of explaining what the website does. These reasons are important because each of them helps increase the [...]]]></description>
			<content:encoded><![CDATA[
<!-- FINE TUNE BUTTON POSITION FOR METHOD A AND B HERE -->
    <span style="margin-top: 10px;
				 margin-right: 10px;
				 margin-bottom: 10px;
				 margin-left: 10px; 
				 
				 float: Right;">

	<script type="text/javascript">
	submit_url = "http://blog.whatclinic.com/2010/08/introducing-whatclinic-com.html";
	</script>
    <script type="text/javascript" src="http://www.bizsugar.com/evb/button.php"></script>
	</span><div class="tweetmeme_button" style="float: right; margin-top: 11px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F08%2Fintroducing-whatclinic-com.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F08%2Fintroducing-whatclinic-com.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignnone size-full wp-image-1200" title="whatclinic-logo" src="http://blog.whatclinic.com/wp-content/uploads/2010/08/whatclinic-logo.png" alt="WhatClinic.com" width="450" height="63" /></p>
<p>On August 10<sup>th</sup> we are changing our name from RevaHealth.com to WhatClinic.com.</p>
<p>The reasons behind the change are very straightforward. WhatClinic.com is easier to remember, easier to spell, and it does a much better job of explaining what the website does.</p>
<p>These reasons are important because each of them helps increase the traffic to our website, which now stands at over 500,000 people per month, up from 190,000 at the start of the year.</p>
<p>We really want these visitors to remember the name of “that really useful website with all the clinics on it” so they can come back and use us again in the future, helping us to cement a solid user base over time.</p>
<p>Once our visitors can remember our name then they can also recommend us to their friends, and that means even more traffic. With such a simple name there should also be no confusion over the spelling, maximising the effect of any word of mouth recommendations.</p>
<p>For new visitors the name gives a really good indication that the website provides a choice of clinics, which will lead to even higher organic click through from search engine users and help us continue to grow our traffic in yet another way.</p>
<p>In the three years since RevaHealth.com launched we have made fantastic progress towards providing comprehensive information about English speaking health clinics in the UK, Ireland and further afield. As WhatClinic.com we will be taking on that challenge on a global scale.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.whatclinic.com/2010/08/introducing-whatclinic-com.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apple iPad In Surprisingly Popular Shocker!</title>
		<link>http://blog.whatclinic.com/2010/06/apple-ipad-in-surprisingly-popular-shocker.html</link>
		<comments>http://blog.whatclinic.com/2010/06/apple-ipad-in-surprisingly-popular-shocker.html#comments</comments>
		<pubDate>Tue, 29 Jun 2010 14:24:12 +0000</pubDate>
		<dc:creator>Philip Boyle</dc:creator>
				<category><![CDATA[Start ups]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[survey]]></category>

		<guid isPermaLink="false">http://blog.revahealth.com/?p=1180</guid>
		<description><![CDATA[submit_url = "http://blog.whatclinic.com/2010/06/apple-ipad-in-surprisingly-popular-shocker.html"; Well, I guess it was bound to happen. We announced we&#8217;d give away an iPad to one lucky RevaHealth.com user who filled in our survey and announce the winner in June. With June about to end, and Apple selling over 3 million iPads in their existing markets, the iPad&#8217;s Irish release date [...]]]></description>
			<content:encoded><![CDATA[
<!-- FINE TUNE BUTTON POSITION FOR METHOD A AND B HERE -->
    <span style="margin-top: 10px;
				 margin-right: 10px;
				 margin-bottom: 10px;
				 margin-left: 10px; 
				 
				 float: Right;">

	<script type="text/javascript">
	submit_url = "http://blog.whatclinic.com/2010/06/apple-ipad-in-surprisingly-popular-shocker.html";
	</script>
    <script type="text/javascript" src="http://www.bizsugar.com/evb/button.php"></script>
	</span><div class="tweetmeme_button" style="float: right; margin-top: 11px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F06%2Fapple-ipad-in-surprisingly-popular-shocker.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F06%2Fapple-ipad-in-surprisingly-popular-shocker.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Well, I guess it was bound to happen. We announced we&#8217;d give away an iPad to one lucky RevaHealth.com user who filled in our survey and announce the winner in June. With June about to end, and Apple selling over 3 million iPads in their existing markets, the iPad&#8217;s Irish release date has been pushed back here until July.</p>
<p>So, to keep things fair to the people who have entered already we&#8217;re going to close the competition at midnight tomorrow, and announce the winner on July 1st. Then as soon as the iPad goes on sale here we&#8217;ll order it and get it to the winner asap.</p>
<p>Thanks to everyone who has filled out the survey so far. To the rest of you, you&#8217;ve got just over 24 hours to <a title="RevaHealth.com Survey iPad Giveaway" href="http://survey.io/survey/14bdb">add your name to the hat</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.whatclinic.com/2010/06/apple-ipad-in-surprisingly-popular-shocker.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Irish Online Health Enquiries &#8211; May 2010</title>
		<link>http://blog.whatclinic.com/2010/06/irish-online-health-enquiries-may-2010.html</link>
		<comments>http://blog.whatclinic.com/2010/06/irish-online-health-enquiries-may-2010.html#comments</comments>
		<pubDate>Thu, 24 Jun 2010 16:13:05 +0000</pubDate>
		<dc:creator>Philip Boyle</dc:creator>
				<category><![CDATA[Health 2.0]]></category>
		<category><![CDATA[cosmetic beauty]]></category>
		<category><![CDATA[cosmetic surgery]]></category>
		<category><![CDATA[dental tourism]]></category>
		<category><![CDATA[dentistry]]></category>
		<category><![CDATA[ireland]]></category>
		<category><![CDATA[medical tourism]]></category>
		<category><![CDATA[northern ireland]]></category>

		<guid isPermaLink="false">http://blog.revahealth.com/?p=1168</guid>
		<description><![CDATA[submit_url = "http://blog.whatclinic.com/2010/06/irish-online-health-enquiries-may-2010.html"; It&#8217;s time to look at what treatments Irish patients contacting clinics through RevaHealth.com were interesting in during May. There&#8217;s good news for dental implant specialists both sides of the border, and further afield. Denture clinics in the Republic have something to smile about too, at the expensive of their colleagues in the [...]]]></description>
			<content:encoded><![CDATA[
<!-- FINE TUNE BUTTON POSITION FOR METHOD A AND B HERE -->
    <span style="margin-top: 10px;
				 margin-right: 10px;
				 margin-bottom: 10px;
				 margin-left: 10px; 
				 
				 float: Right;">

	<script type="text/javascript">
	submit_url = "http://blog.whatclinic.com/2010/06/irish-online-health-enquiries-may-2010.html";
	</script>
    <script type="text/javascript" src="http://www.bizsugar.com/evb/button.php"></script>
	</span><div class="tweetmeme_button" style="float: right; margin-top: 11px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F06%2Firish-online-health-enquiries-may-2010.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F06%2Firish-online-health-enquiries-may-2010.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>It&#8217;s time to look at what treatments Irish patients contacting clinics through RevaHealth.com were interesting in during May. There&#8217;s good news for dental implant specialists both sides of the border, and further afield. Denture clinics in the Republic have something to smile about too, at the expensive of their colleagues in the North. Breast reductions in both women and men are on the rise in cosmetic surgery, and Botox remains the king of cosmetic beauty treatments.</p>
<p><img class="alignnone size-full wp-image-1174" title="ireland-dental-treatments-at-home-june-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/06/ireland-dental-treatments-at-home-june-2010.png" alt="Dental Treatments in Ireland - June 2010" width="481" height="289" /></p>
<p>The trend towards lower cost and maitanence dentistry continues as the economy continues to contract, with dentures, teeth cleaning and fillings enquiries all seeing substantial increases against the last year&#8217;s averages. Bucking that trend though are dental implants, one of the most costly treatments around, which saw a 20.7% increase in market share, up to 17% compared to the yearly average of 14.1%.</p>
<p><img class="alignnone size-full wp-image-1175" title="ireland-dental-treatments-in-northern-ireland-june-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/06/ireland-dental-treatments-in-northern-ireland-june-2010.png" alt="Dental Tourism to Northern Ireland - June 2010" width="481" height="289" /></p>
<p>Irish patients continue to enquire about treatment in Northern Ireland in large numbers, with root canals and dental implants seeing the biggest shifts from the norms, but it&#8217;s bad news for denture clinics for this month at least as patients in the Republic seek more intent on staying put than making the journey across the border.</p>
<p><img class="alignnone size-full wp-image-1173" title="ireland-dental-tourism-june-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/06/ireland-dental-tourism-june-2010.png" alt="Dental Tourism Treatments for Irish Patients - June 2010" width="481" height="289" /></p>
<p>Figures for Irish enquiries about dental tourism treatments reveal a shift away from the slightly cheaper treatments of teeth whitening and veneers back towards implants, crowns and bridges. There were also more surprising increases for root canals, dentures and even fillings. This might be because of the run up to people&#8217;s summer holidays, so people are already travelling to foreign destinations.</p>
<p><img class="alignnone size-full wp-image-1172" title="ireland-cosmetic-surgery-treatments-june-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/06/ireland-cosmetic-surgery-treatments-june-2010.png" alt="Cosmetic Surgery in Ireland - June 2010" width="481" height="289" /></p>
<p>The trend more for breast reduction operations for women continues, as does the increased interest in liposuction. Male breast reduction, also known as treatment for gynecomastia, mirrors the increase in popularity noted in the UK by growing its market share from an average of 1.5% of enquiries to 3% of enquiries in May.</p>
<p><img class="alignnone size-full wp-image-1176" title="ireland-cosmetic-beauty-treatments-june-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/06/ireland-cosmetic-beauty-treatments-june-2010.png" alt="Cosmetic Beauty Treatments in Ireland - June 2010" width="481" height="289" /></p>
<p>Botox is the undisputed king of the hill in the cosmetic beauty treatment world, accounting for 27.9% of Irish enquiries in May. Laser hair removal is a distant but growing second at 14% of the market.</p>
<p><img class="alignnone size-full wp-image-1170" title="ireland-medical-tourism-overview-june-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/06/ireland-medical-tourism-overview-june-2010.png" alt="Medical Tourism from Ireland - June 2010" width="481" height="289" /></p>
<p>Finally the overview of medical tourism from Ireland shows very small falls in market share for dental and cosmetic surgery enquiries, with fertility clinics being the biggest winners. In an average month fertility clinics abroad account for 1.5% of Irish medical tourism enquiries, whereas last month they managed to take 3.6% of the market.</p>
<p>More data about the UK market will follow on Monday. If you&#8217;d like to see some other statistics about Irish private health patients or have any questions about the above please leave a comment in the box below.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.whatclinic.com/2010/06/irish-online-health-enquiries-may-2010.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maps Of Clinics Accepting NHS Patients</title>
		<link>http://blog.whatclinic.com/2010/06/maps-of-clinics-accepting-nhs-patients.html</link>
		<comments>http://blog.whatclinic.com/2010/06/maps-of-clinics-accepting-nhs-patients.html#comments</comments>
		<pubDate>Tue, 01 Jun 2010 14:50:19 +0000</pubDate>
		<dc:creator>Philip Boyle</dc:creator>
				<category><![CDATA[Health 2.0]]></category>
		<category><![CDATA[Web/Tech]]></category>
		<category><![CDATA[dentists]]></category>
		<category><![CDATA[doctors]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[nhs]]></category>
		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://blog.revahealth.com/?p=1144</guid>
		<description><![CDATA[submit_url = "http://blog.whatclinic.com/2010/06/maps-of-clinics-accepting-nhs-patients.html"; We&#8217;re always looking for ways to get our information out in front of more people, and one of the ways we&#8217;ve been doing that recently is by letting other sites add maps of our clinics to their own websites. In the UK some websites didn&#8217;t want to show private clinics, so we&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[
<!-- FINE TUNE BUTTON POSITION FOR METHOD A AND B HERE -->
    <span style="margin-top: 10px;
				 margin-right: 10px;
				 margin-bottom: 10px;
				 margin-left: 10px; 
				 
				 float: Right;">

	<script type="text/javascript">
	submit_url = "http://blog.whatclinic.com/2010/06/maps-of-clinics-accepting-nhs-patients.html";
	</script>
    <script type="text/javascript" src="http://www.bizsugar.com/evb/button.php"></script>
	</span><div class="tweetmeme_button" style="float: right; margin-top: 11px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F06%2Fmaps-of-clinics-accepting-nhs-patients.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F06%2Fmaps-of-clinics-accepting-nhs-patients.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>We&#8217;re always looking for ways to get our information out in front of more people, and one of the ways we&#8217;ve been doing that recently is by letting other sites add maps of our clinics to their own websites. In the UK some websites didn&#8217;t want to show private clinics, so we&#8217;ve developed new maps that only show NHS. Here are some examples.</p>
<p><strong>NHS Dentists in Manchester</strong><br />
<iframe src='http://www.revahealth.com/dentists/uk/lancashire/manchester/nhs/externalmap' width='600' height='400' frameborder='0'></iframe><br />
<span><a title='NHS Dentists Manchester' href='http://www.revahealth.com/dentists/uk/lancashire/manchester/nhs'>NHS Dentists in Manchester</a> data provided by RevaHealth.com<span></p>
<p><strong>NHS Doctors in Liverpool</strong><br />
<iframe src='http://www.revahealth.com/doctors/uk/merseyside/liverpool/nhs/externalmap' width='600' height='400' frameborder='0'></iframe><br />
<span><a title='NHS Doctors Liverpool' href='http://www.revahealth.com/doctors/uk/merseyside/liverpool/nhs'>NHS Dentists in Manchester</a> data provided by RevaHealth.com<span></p>
<p>If you want to use these maps on your own website you just need to paste the following html into the content source code of one of your pages.</p>
<blockquote><p>&lt;iframe src=&#8217;http://www.revahealth.com/dentists/uk/lancashire/manchester/nhs/externalmap&#8217; width=&#8217;600&#8242; height=&#8217;400&#8242; frameborder=&#8217;0&#8242;&gt;&lt;/iframe&gt; &lt;span&gt;&lt;a title=&#8217;NHS Dentists Manchester&#8217; href=&#8217;http://www.revahealth.com/dentists/uk/lancashire/manchester/nhs&#8217;&gt;NHS Dentists in Manchester&lt;/a&gt; data provided by RevaHealth.com&lt;span&gt;</p></blockquote>
<p>Obviously the code needs to be adapted to which map on RevaHealth.com you want to use. The code above points at the NHS dentists in Manachester page, but every search result on our site has a corresponding map that you can use on your site. If you have any trouble making it work just leave a comment below and I&#8217;ll help you get it up and running on your site.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.whatclinic.com/2010/06/maps-of-clinics-accepting-nhs-patients.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BizCamp Dublin 2010</title>
		<link>http://blog.whatclinic.com/2010/06/bizcamp-dublin-2010.html</link>
		<comments>http://blog.whatclinic.com/2010/06/bizcamp-dublin-2010.html#comments</comments>
		<pubDate>Tue, 01 Jun 2010 09:32:01 +0000</pubDate>
		<dc:creator>Philip Boyle</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[bizcamp]]></category>
		<category><![CDATA[caelen king]]></category>
		<category><![CDATA[dublin]]></category>
		<category><![CDATA[owen cooney]]></category>

		<guid isPermaLink="false">http://blog.revahealth.com/?p=1134</guid>
		<description><![CDATA[submit_url = "http://blog.whatclinic.com/2010/06/bizcamp-dublin-2010.html"; Caelen and Owen attended BizCamp Dublin 2010 in the Guinness Storehouse on Saturday and got a chance to take in a few of the talks as well as deliver a presentation. I&#8217;ve included Caelen&#8217;s slides at the end of this post and Owen gave me a quick rundown of the talks he [...]]]></description>
			<content:encoded><![CDATA[
<!-- FINE TUNE BUTTON POSITION FOR METHOD A AND B HERE -->
    <span style="margin-top: 10px;
				 margin-right: 10px;
				 margin-bottom: 10px;
				 margin-left: 10px; 
				 
				 float: Right;">

	<script type="text/javascript">
	submit_url = "http://blog.whatclinic.com/2010/06/bizcamp-dublin-2010.html";
	</script>
    <script type="text/javascript" src="http://www.bizsugar.com/evb/button.php"></script>
	</span><div class="tweetmeme_button" style="float: right; margin-top: 11px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F06%2Fbizcamp-dublin-2010.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F06%2Fbizcamp-dublin-2010.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Caelen and Owen attended <a title="BizCamp Dublin" href="http://www.bizcamp.ie/dublin/">BizCamp Dublin 2010</a> in the Guinness Storehouse on Saturday and got a chance to take in a few of the talks as well as deliver a presentation. I&#8217;ve included Caelen&#8217;s slides at the end of this post and Owen gave me a quick rundown of the talks he attended:</p>
<p><strong>Speaker:</strong> Des Traynor (<a title="Contrast" href="http://www.contrast.ie/">Contrast</a>)<br />
<strong>Title:</strong> Product Strategy for the Business of Web Applications<br />
<strong>Comments:</strong> good tips on optimising web applications by being disciplined about only building the key required features and constantly examining whether there is a market for your product.</p>
<p><strong>Speaker:</strong> Paul McAvinchey (<a title="Yaboya" href="http://www.yaboya.com/">Yaboya Media</a>)<br />
<strong> Title:</strong> Service before content. Creating online experiences that people will pay for. For anyone wondering how to make money with online content.<br />
<strong> Comments:</strong> Innovative web business models based on selling premium services to the visitors of your media website such as1) aggregating niche content that is extremely valuable 2) Providing live support /tutorial services 3) Selling products and services relevant to your target market.</p>
<p><strong>Speaker:</strong> Paddy Cosgrave (<a title="Dublin Web Summit" href="http://www.dublinwebsummit.com/">Dublin Web Summit</a>)<br />
<strong> Title:</strong> I’m not good at much &#8211; but I keep trying. I started and exited, have since spoken in a few places like Facebook’s HQ in Palo Alto, and have been appointed to UN committees at a global level for ICT<br />
<strong> Comments:</strong> Successfully engaged the audience into a group discussion ranging from the value of business coaching services, to the dangers of the Irish service industry model of only serving one or two large suppliers.</p>
<p><strong>Speaker:</strong> Alan O’Rourke (<a title="Toddle" href="http://www.toddle.com/">Toddle</a>)<br />
<strong> Title:</strong> Double your online sales &amp; cut your marketing costs by optimising your landing pages.<br />
<strong> Comments:</strong> great tips on increasing the performance of the call to action on a website.</p>
<div id="__ss_4373899" style="width: 425px;"><strong><a title="Overcoming friction in web based sales" href="http://www.slideshare.net/philrevahealth/overcoming-friction-in-web-based-sales">Overcoming friction in web based sales</a></strong><object id="__sse4373899" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=presentation-100601042526-phpapp01&amp;stripped_title=overcoming-friction-in-web-based-sales" /><param name="name" value="__sse4373899" /><param name="allowfullscreen" value="true" /><embed id="__sse4373899" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=presentation-100601042526-phpapp01&amp;stripped_title=overcoming-friction-in-web-based-sales" name="__sse4373899" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p>&nbsp;</p>
<p><strong>Update: 01/06/2010</strong></p>
<p><img src="http://blog.revahealth.com/wp-content/uploads/2010/06/bizcamp_se_logo-300x105.jpg" alt="BizCamp South East Logo" title="bizcamp_se_logo" width="300" height="105" /></p>
<p>The next installment of BizCamp happens on June 12th at BizCamp South in the Arclabs Research &#038; Innovation Centre in Waterford. You can register online for free tickets at <a href="http://www.bizcamp.ie/southeast">www.bizcamp.ie/southeast</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.whatclinic.com/2010/06/bizcamp-dublin-2010.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An iPad For Your Thoughts&#8230;</title>
		<link>http://blog.whatclinic.com/2010/05/an-ipad-for-your-thoughts.html</link>
		<comments>http://blog.whatclinic.com/2010/05/an-ipad-for-your-thoughts.html#comments</comments>
		<pubDate>Wed, 05 May 2010 10:39:54 +0000</pubDate>
		<dc:creator>Philip Boyle</dc:creator>
				<category><![CDATA[Start ups]]></category>
		<category><![CDATA[Web/Tech]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[revahealth.com]]></category>
		<category><![CDATA[survey]]></category>

		<guid isPermaLink="false">http://blog.revahealth.com/?p=1098</guid>
		<description><![CDATA[submit_url = "http://blog.whatclinic.com/2010/05/an-ipad-for-your-thoughts.html"; You all know the saying &#8220;A penny for your thoughts?&#8221;. Well it was coined a long time ago and inflation hasn&#8217;t really been taken into account so we decide to do something about it. How about &#8220;An iPad for your thoughts?&#8221;. We&#8217;d really like to know what you think about our main [...]]]></description>
			<content:encoded><![CDATA[
<!-- FINE TUNE BUTTON POSITION FOR METHOD A AND B HERE -->
    <span style="margin-top: 10px;
				 margin-right: 10px;
				 margin-bottom: 10px;
				 margin-left: 10px; 
				 
				 float: Right;">

	<script type="text/javascript">
	submit_url = "http://blog.whatclinic.com/2010/05/an-ipad-for-your-thoughts.html";
	</script>
    <script type="text/javascript" src="http://www.bizsugar.com/evb/button.php"></script>
	</span><div class="tweetmeme_button" style="float: right; margin-top: 11px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F05%2Fan-ipad-for-your-thoughts.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F05%2Fan-ipad-for-your-thoughts.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>You all know the saying &#8220;A penny for your thoughts?&#8221;. Well it was coined a long time ago and inflation hasn&#8217;t really been taken into account so we decide to do something about it. How about &#8220;An iPad for your thoughts?&#8221;.</p>
<p>We&#8217;d really like to know what you think about our main website RevaHealth.com, so we&#8217;ve set up a short survey about the site. If you take a look at the top right hand corner of your screen you should see a small banner that says &#8220;<a href="http://survey.io/survey/14bdb">Take Our Survey</a>&#8220;. Just click on it and away you go.</p>
<p>One lucky respondent will become the proud owner of a brand new Apple iPad!</p>
<div id="attachment_1102" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-1102" title="ipad" src="http://blog.revahealth.com/wp-content/uploads/2010/05/ipad.png" alt="Apple iPad" width="500" height="280" /><p class="wp-caption-text">Win one of these!</p></div>
<p>We&#8217;ll announce the winner here in June and please feel free to pass on a link to this post to anyone else you know who has used RevaHealth.com in the past. There is one important thing to remember though:</p>
<p><strong>If you want to win the iPad, you have to fill in your email address in the last question of the survey.</strong></p>
<p>You need to give us permission to email you or else we can&#8217;t tell you that you&#8217;ve won!</p>
<p>Best of luck, and thanks in advance for the feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.whatclinic.com/2010/05/an-ipad-for-your-thoughts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RevaHealth.com Monthly Health Check &#8211; May 2010</title>
		<link>http://blog.whatclinic.com/2010/05/revahealth-com-monthly-health-check-may-2010.html</link>
		<comments>http://blog.whatclinic.com/2010/05/revahealth-com-monthly-health-check-may-2010.html#comments</comments>
		<pubDate>Tue, 04 May 2010 08:00:01 +0000</pubDate>
		<dc:creator>Philip Boyle</dc:creator>
				<category><![CDATA[Monthly Barometer]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[cosmetic beauty]]></category>
		<category><![CDATA[dentistry]]></category>
		<category><![CDATA[ireland]]></category>
		<category><![CDATA[medical tourism]]></category>
		<category><![CDATA[plastic surgery]]></category>
		<category><![CDATA[uk]]></category>
		<category><![CDATA[usa]]></category>

		<guid isPermaLink="false">http://blog.revahealth.com/?p=1088</guid>
		<description><![CDATA[submit_url = "http://blog.whatclinic.com/2010/05/revahealth-com-monthly-health-check-may-2010.html"; Following on from my post last month about what treatments Irish dental patients were interested in, here is a more comprehensive look at what dental and cosmetic patients in the UK, Ireland, and the US &#38; Canada are enquiring about on RevaHealth.com. This time I&#8217;ve included the data for the past 12 [...]]]></description>
			<content:encoded><![CDATA[
<!-- FINE TUNE BUTTON POSITION FOR METHOD A AND B HERE -->
    <span style="margin-top: 10px;
				 margin-right: 10px;
				 margin-bottom: 10px;
				 margin-left: 10px; 
				 
				 float: Right;">

	<script type="text/javascript">
	submit_url = "http://blog.whatclinic.com/2010/05/revahealth-com-monthly-health-check-may-2010.html";
	</script>
    <script type="text/javascript" src="http://www.bizsugar.com/evb/button.php"></script>
	</span><div class="tweetmeme_button" style="float: right; margin-top: 11px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F05%2Frevahealth-com-monthly-health-check-may-2010.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.whatclinic.com%2F2010%2F05%2Frevahealth-com-monthly-health-check-may-2010.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Following on from my post last month about what treatments <a title="Irish dental treatments April 2010" href="http://blog.revahealth.com/2010/03/irish-dental-treatment-enquiries-home-abroad.html">Irish dental patients</a> were interested in, here is a more comprehensive look at what dental and cosmetic patients in the UK, Ireland, and the US &amp; Canada are enquiring about on RevaHealth.com. This time I&#8217;ve included the data for the past 12 months as well as the month just gone. This gives a good indication of what treatments are growing in popularity over time.</p>
<p>As ever, your comments and feedback both about the figures we&#8217;ve published and other figures you might like to see are more than welcome. You can leave a comment at the end of this post or contact us via email or Twitter &#8211; full details on the <a title="Contact RevaHealth.com" href="http://blog.revahealth.com/contact-us">contact us</a> page.</p>
<h2><strong>British Patients</strong></h2>
<div id="attachment_1086" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1086" title="uk-dental-treatments-at-home-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/uk-dental-treatments-at-home-may-2010.png" alt="British Dental Treatments - May 2010" width="481" height="289" /><p class="wp-caption-text">Top 10 Dental Treatments Requested by UK Patients - May 2010</p></div>
<p>First up we take a look at what UK dental patients are interested in. The classic cosmetic treatments of teeth whitening and veneers lead the way. This month I&#8217;ve broken out Invisalign from traditional braces as they account for such a big share of the market by themselves, 11.05% in the last month, a 55% increase over their yearly average.</p>
<p>Looking at the other differences between last month&#8217;s and last year&#8217;s figures you can see a shift towards more basic treatments like teeth cleaning, extractions and dentures to the expensive of some of the more expensive cosmetic treatments. Veneers in particular are 37% behind their yearly average despite still being the second most popular individual treatment. It will be interesting to see if the cosmetic treatments make a comeback as the UK economy turns around.</p>
<div id="attachment_1085" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1085" title="uk-dental-tourism-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/uk-dental-tourism-may-2010.png" alt="British Dental Tourism Breakdown - May 2010" width="481" height="289" /><p class="wp-caption-text">British Dental Tourism Patients - May 2010</p></div>
<p>Patients from the UK heading abroad for their dental work are still interested primarily in the top end treatments like veneers and dental implants, but the number one treatment enquired about last month was teeth whitening, traditionally one of the cheaper cosmetic dental treatments. Last month it accounted for 26% of enquiries for dental treatment abroad.</p>
<p>Patients thinking of having teeth whitening abroad are more than likely going to be travelling to their chosen clinic&#8217;s location already, as it would be hard to save the travel and accommodation costs on the reduced treatment cost alone.</p>
<div id="attachment_1084" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1084" title="uk-cosmetic-surgery-treatments-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/uk-cosmetic-surgery-treatments-may-2010.png" alt="Plastic Surgery Treatments for British Patients - May 2010" width="481" height="289" /><p class="wp-caption-text">British Cosmetic Surgery Patients - May 2010</p></div>
<p>For this month&#8217;s figures I&#8217;ve rolled a lot of treatments up into their category, and one surprising result is shown here in the UK&#8217;s cosmetic surgery figures. Genital reshaping is and has been for the last year the most enquired about area of treatment in the UK. I didn&#8217;t really believe this when I saw it myself, so I looked into it a bit further and it turns out that in the past this was largely down to circumcision being included in genital reshaping. However, last month it accounted for only 35% of genital reshaping enquiries. Other treatments enquired about in the last month include vaginoplasty, labiaplasty, hymenoplasty and penis enlargement.</p>
<p>Seeing as genital reshaping accounts for so much of the market we will probably start breaking it out into its individual treatments in next month&#8217;s figures.</p>
<div id="attachment_1083" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1083" title="uk-cosmetic-beauty-treatments-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/uk-cosmetic-beauty-treatments-may-2010.png" alt="Beauty Treatments for British Patients - May 2010" width="481" height="289" /><p class="wp-caption-text">Top 10 British Cosmetic Beauty Treatments - May 2010</p></div>
<p>The cosmetic beauty sector has one of the most dependable treatment breakdowns around, being solidly dominated by Botox again and again. Judging by last month&#8217;s figures it shows no signs of declining in popularity.</p>
<div id="attachment_1087" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1087" title="uk-medical-tourism-overview-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/uk-medical-tourism-overview-may-2010.png" alt="British Medical Tourism Breakdown - May 2010" width="481" height="289" /><p class="wp-caption-text">Breakdown of British Medical Tourism - May 2010</p></div>
<p>Looking at what treatment areas British people are looking for when travelling abroad, you can see that plastic surgery, cosmetic beauty and fertility enquiries are all increasing. We haven&#8217;t seen any decrease in the number of enquiries for treatment abroad so although it accounts for less of the market overall, that is just down to the increasing popularity of the other areas mentioned.</p>
<div id="attachment_1081" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1081" title="top-10-uk-medical-tourism-treatments-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/top-10-uk-medical-tourism-treatments-may-2010.png" alt="British Medical Tourism Treatments - May 2010" width="481" height="289" /><p class="wp-caption-text">Top 10 Medical Tourism Treatments for British Patients - May 2010</p></div>
<p>As reflected in the breakdown by treatment area, cosmetic surgery treatments are growing in popularity relative to their market share over the past 12 months.</p>
<h2><strong>Irish Patients</strong></h2>
<div id="attachment_1077" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1077" title="ireland-dental-treatments-at-home-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/ireland-dental-treatments-at-home-may-2010.png" alt="Dental Treatments in Ireland - May 2010" width="481" height="289" /><p class="wp-caption-text">Top 10 Dental Treatments in Ireland - May 2010</p></div>
<p>There is an interesting spike in last month&#8217;s figures for dental implants compared to their yearly average market share, this despite being among the most expensive treatments available. Similarly there is an increase in interest in Invisalign treatment too, again one of the more modern and expensive treatments available. It will be interesting to see if this trend continues into next month.</p>
<div id="attachment_1078" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1078" title="ireland-dental-treatments-in-northern-ireland-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/ireland-dental-treatments-in-northern-ireland-may-2010.png" alt="Dental Treatments for Irish Patients Travelling to Northern Ireland - May 2010" width="481" height="289" /><p class="wp-caption-text">Top 10 Dental Treatments for Irish Patients in Northern Ireland - May 2010</p></div>
<p>Northern Ireland remains a very popular alternative for dental treatment for Irish patients, accounting for 26% of all Irish dental enquiries last month. Again the expensive treatments dominate the enquiries, with braces leading the way. There is evidence of prices falling somewhat in the Republic recently and the Euro is getting weaker at the moment, so it looks like Northern dentists will be in for some competition over the coming months.</p>
<div id="attachment_1076" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1076" title="ireland-dental-tourism-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/ireland-dental-tourism-may-2010.png" alt="Irish Dental Tourism Treatment Breakdown - May 2010" width="481" height="289" /><p class="wp-caption-text">Top 10 Dental Treatments for Irish Patients Travelling Abroad - May 2010</p></div>
<p>The increase in interest in dental implants at home in Ireland seems to be mirrored by a decrease in their popularity last month among patients intending to travel abroad, while the other traditional favourite veneers remains just as popular. Dental crowns, invisalign and dentures all experienced a relative boost in popularity this month too.</p>
<div id="attachment_1074" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1074" title="ireland-cosmetic-surgery-treatments-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/ireland-cosmetic-surgery-treatments-may-2010.png" alt="Cosmetic Surgery Treatments in Ireland - May 2010" width="481" height="289" /><p class="wp-caption-text">Irish Plastic Surgery Patients - May 2010</p></div>
<p>There has been a fairly steady interest in the cosmetic surgery treatments that are popular among Irish patients for the last year, and it continues this month. The biggest change in the last month has been an increase in popluarity for breast implants, which are 18% ahead of their yearly average.</p>
<div id="attachment_1073" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1073" title="ireland-cosmetic-beauty-treatments-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/ireland-cosmetic-beauty-treatments-may-2010.png" alt="Cosmetic Beauty Treatments for Irish Patients - May 2010" width="481" height="289" /><p class="wp-caption-text">Irish Beauty Patients - May 2010</p></div>
<p>As with the UK, the cosmetic beauty sector is dominated by Botox enquiries, here accounting for just under 30% of the market. Frequent television ads for a laser hair removal company seem to have increased the popularity of that treatment also, with enquiries running 23% ahead of their yearly average.</p>
<div id="attachment_1079" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1079" title="ireland-medical-tourism-overview-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/ireland-medical-tourism-overview-may-2010.png" alt="Irish Medical Tourism Breakdown - May 2010" width="481" height="289" /><p class="wp-caption-text">Breakdown of Medical Tourism in Ireland - May 2010</p></div>
<p>Again, following the trend in the UK, Irish patients looking for treatment abroad are increasingly interested in cosmetic surgery and beauty procedures, as well as fertility and bariatric surgery. The relative decrease does not represent a drop in enquiries numbers for dental treatment abroad, rather it reflects in the increase in numbers for the other treatment areas.</p>
<div id="attachment_1080" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1080" title="top-10-irish-medical-tourism-treatments-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/top-10-irish-medical-tourism-treatments-may-2010.png" alt="Irish Medical Tourism Treatments - May 2010" width="481" height="289" /><p class="wp-caption-text">Top 10 Medical Tourism Treatments for Irish Patients - May 2010</p></div>
<p>The top ten individual treatments for Irish medical tourists are dominated by dental treatments but interestingly botox makes an appearance along with breast implants.</p>
<h2>US &amp; Canadian Patients</h2>
<div id="attachment_1072" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1072" title="us-and-canada-medical-tourism-overview-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/us-and-canada-medical-tourism-overview-may-2010.png" alt="Medical Tourism from the US &amp; Canada - May 2010" width="481" height="289" /><p class="wp-caption-text">Medical Tourism Breakdown - USA &amp; Canada - May 2010</p></div>
<p>Much more so than in the UK or Ireland, US &amp; Canadian patients are looking for dental treatment aborad, and the increases in popularity of other treatment areas is much smaller. Mexico remains by far the most popular destination, followed by the Philippines and Costa Rica.</p>
<div id="attachment_1082" class="wp-caption alignnone" style="width: 491px"><img class="size-full wp-image-1082" title="top-10-us-and-canada-medical-tourism-treatments-may-2010" src="http://blog.revahealth.com/wp-content/uploads/2010/04/top-10-us-and-canada-medical-tourism-treatments-may-2010.png" alt="Medical Tourism Treatments for Patients from the US &amp; Canada - May 2010" width="481" height="289" /><p class="wp-caption-text">Top 10 Medical Tourism Treatments for American and Canadian Patients - May 2010</p></div>
<p>As with dental tourism in Europe, the most popular treatments are the expensive cosmetic treatments of dental implants and dental veneers.</p>
<h2>Next Month</h2>
<p>As ever we are interested in providing information that is not only useful to us here in RevaHealth.com, but also is of use to you, our readers. Whether you are a journalist, a business owner or a patient, we&#8217;d love to hear your feedback and any requests for additional information you might have.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.whatclinic.com/2010/05/revahealth-com-monthly-health-check-may-2010.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
