<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>Poker tools : HID Poker</title>
        <link>http://betting.betfair.com/poker/tools/</link>
        <description></description>
        <language>en</language>
        <copyright>Copyright 2009</copyright>
        <lastBuildDate>Wed, 21 Nov 2007 00:28:22 +0000</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>Poker Plus</title>
            <description><![CDATA[
<script type="text/javascript">//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated.  All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

function ControlVersion()
{
	var version;
	var axo;
	var e;

	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry

	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
		version = axo.GetVariable("$version");
	} catch (e) {
	}

	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");

			// installed player is some revision of 6.0
			// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful. 

			// default to the first public version
			version = "WIN 6,0,21,0";

			// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
			axo.AllowScriptAccess = "always";

			// safe to call for 6.0r47 or greater
			version = axo.GetVariable("$version");

		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = "WIN 3,0,18,0";
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
			version = "WIN 2,0,0,11";
		} catch (e) {
			version = -1;
		}
	}

	return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version >= 3 check for Flash plugin in plugin array
	var flashVer = -1;

	if (navigator.plugins != null && navigator.plugins.length > 0) {
		if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
			var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
			var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
			var descArray = flashDescription.split(" ");
			var tempArrayMajor = descArray[2].split(".");			
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			var versionRevision = descArray[3];
			if (versionRevision == "") {
				versionRevision = descArray[4];
			}
			if (versionRevision[0] == "d") {
				versionRevision = versionRevision.substring(1);
			} else if (versionRevision[0] == "r") {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf("d") > 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
				}
			}
			var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
	else if ( isIE && isWin && !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE && isWin && !isOpera) {
			// Given "WIN 2,0,0,11"
			tempArray         = versionStr.split(" "); 	// ["WIN", "2,0,0,11"]
			tempString        = tempArray[1];			// "2,0,0,11"
			versionArray      = tempString.split(",");	// ['2', '0', '0', '11']
		} else {
			versionArray      = versionStr.split(".");
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];

        	// is the major.revision >= requested major.revision AND the minor version >= requested minor
		if (versionMajor > parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor > parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision >= parseFloat(reqRevision))
					return true;
			}
		}
		return false;
	}
}

function AC_AddExtension(src, ext)
{
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?'); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = '';
  if (isIE && isWin && !isOpera)
  {
    str += '<object ';
    for (var i in objAttrs)
    {
      str += i + '="' + objAttrs[i] + '" ';
    }
    str += '>';
    for (var i in params)
    {
      str += '<param name="' + i + '" value="' + params[i] + '" /> ';
    }
    str += '</object>';
  }
  else
  {
    str += '<embed ';
    for (var i in embedAttrs)
    {
      str += i + '="' + embedAttrs[i] + '" ';
    }
    str += '> </embed>';
  }

  document.write(str);
}

function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();    

    switch (currArg){	
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblClick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
      case "id":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace": 
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
}
</script>
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','570','height','373','src','http://site.poker.betfair.com/publisher2/attachment.servlet/i65771361/att65771586/demo-2.swf','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','http://site.poker.betfair.com/publisher2/attachment.servlet/i65771361/att65771586/demo-2.swf' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="570" height="373">
  <param name="movie" value="http://site.poker.betfair.com/publisher2/attachment.servlet/i65771361/att65771586/demo-2.swf" />
  <param name="quality" value="high" />
  <embed src="http://site.poker.betfair.com/publisher2/attachment.servlet/i65771361/att65771586/demo-2.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="570" height="373"></embed>
</object></noscript>

<p>
The new and improved Betfair Poker Plus software with the changes you've been asking for has arrived. This section of betfairpoker.com will tell you all what you want to know about this release. </p>

<ul>
<li><a href="#new">What's new with Betfair Poker Plus?</a></li>
<li><a href="#download">How do I download it?</a></li>
<li><a href="#stretch">How do I stretch the windows?</a></li>
<li><a href="#multiple">How do I play multiple windows?</a> </li>
<li><a href="#userkey">User key</a></li>
<li><a href="#tables">How many tables can I play or watch at the same time?</a></li>
<li><a href="#pokerplus">Can you download Betfair Poker Plus on any computer?</a></li>
<li><a href="#problems">What can I do if I have problems with Betfair Poker Plus?</a></li>
<li><a href="#pledge">The Betfair Poker Pledge</a></li>
<li><a href="#promo">Software launch promotion</a></li>
</ul>
<p><br/><br/>
   <span id="new" style="text-decoration: underline;font-weight: bold;">What's new with Betfair Poker Plus?</span></p>

<p>Betfair Poker Plus is a new version of Betfair's poker software that allows you to generate multiple tables in separate windows and then stretch, shrink and arrange them around your screen to suit you.</p>

<p>This break from the rigid display options of earlier versions of our software will give you much more freedom over how you want to play your poker. If you like to focus on one table then you can choose to fill your screen by playing at 200% standard size, alternatively you could shrink down to the smallest 70% size and get on with other things on your PC at the same time.  </p>

<p>And for those of you who like to multi-table, it's a real treat as you can now "comfortably" operate up to 15 windows at the same time with quick and easy layered table formatting.</p> 

<p>On top of all these developments, there are also additional usability changes such as being able to scroll the lobby with your mouse "track wheel" which will make finding your desired game even easier.</p>

<p><br/><br/>
   <span id="download" style="text-decoration: underline;font-weight: bold;">How do I download it?</span></p>

<p>If you already have the previous software version on your desktop then from April 30th 2007 the first time that you load up Betfair Poker you'll be prompted to decide between downloading the new Betfair Poker Plus software or upgrading the "Standard" software that will have all of the new features except you will not be able to re-size the windows. The "Standard" option may be the preferred route of some players on lower spec computers or those who suffer from slow connection speeds. Click to <a href="http://site.poker.betfair.com/download">download Betfair Poker Plus software</a>. </p>

<p>If you have installed Betfair Poker Plus and then find that it isn't optimal with your computer even after checking DirectX and graphics driver issues you should close down and select Betfair Poker Standard instead.</p>

<p>If when loading Betfair Poker Plus you selected "Always launch this version" you have the following options:</p>
<ul>
<li>Uninstall and reinstall the client</li>
<li>Delete the file called "runmode" (that will have been created in your installation directory) and then restart the client.</li>
</ul>
<p><br/><br/>
   <span id="stretch" style="text-decoration: underline;font-weight: bold;">How do I stretch the windows in Betfair Poker Plus?</span></p>

<p>Just grab the window on any of the four sides or corners with your mouse and drag inwards or outwards, in exactly the same way that you'd re-size a Microsoft window. </p>

<p>Instant re-sizes - A button in the top right that allows you to instantly return to the standard 1:1 size or alternatively you can increase to the maximum size by double clicking on the top bar.</p>

<p><br/><br/>
   <span id="multiple" style="text-decoration: underline;font-weight: bold;">How do I play multiple windows? </span></p>

<p>Loading multiple windows is easy. We've given you complete control. </p>

<p>Firstly, if you register for a new tournament or cash game then it will automatically load up in the same window as you are currently in. There's no longer any need for the green button that tells you that your tournament is about to start, it just automatically arrives on your screen. If you register for multiple Sit and Gos or MTTs at the same time then it will automatically generate a new table when the tournament is ready to start. You won't need to close screens or navigate around, the poker comes to you. </p>

<p>If at any time you want to open a new view of the lobby to look at your tournament status, find your friends or register for a new game then you're just one click away. The button in the top right (closest to the table) will load a new window without interfering with what you were doing. For example, click this five times and you'll get five new windows, it's as simple as that!</p>

<p>You are able to open up to 15 tables at any one time. Clicking on the generate window button may stop you at nine windows but you will be able to generate further windows simply by entering tournaments that will auto-generate additional windows.</p>

<p>Check out the User Key below for the full guide to how the top right navigation works.</p>
<p><br/></p>

<p><span id="userkey" style="text-decoration: underline;font-weight: bold;">User key</span></p>

<p>So, what do the new navigation buttons mean? Here's your User Key: 
<table>
<tr>
<td width="32"><img src="http://site.poker.betfair.com/publisher2/attachment.servlet/i65771361/att65771574/detwin1.gif"/></td>
<td width="8"/>
<td>
<b>Generate a new window</b> - Click this at any time and you will open a new window with a view of the poker lobby.
</td>
</tr>
<tr>
<td width="32"><img src="http://site.poker.betfair.com/publisher2/attachment.servlet/i65771361/att65771588/detwin2_1.gif"/></td>
<td width="8"/>
<td>
<b>New horizontally combined windows</b> - creates other view(s) combined to the right of this window.
</td>
</tr>
<tr>
<td width="32"><img src="http://site.poker.betfair.com/publisher2/attachment.servlet/i65771361/att65771578/detwin3.gif"/></td>
<td width="8"/>
<td>
<b>New vertically combined windows</b> - creates other view(s) combined below this window.<br/><br/>
</td>
</tr>
<tr>
<td width="32"><img src="http://site.poker.betfair.com/publisher2/attachment.servlet/i65771361/att65771580/Detwin4.gif"/></td>
<td width="8"/>
<td>
<b>Separate</b> - If you have merged windows together but wish to split them, click on this button and they will automatically separate.
</td>
</tr>
<tr>
<td width="32"><img src="http://site.poker.betfair.com/publisher2/attachment.servlet/i65771361/att65771582/detwin5.gif"/></td>
<td width="8"/>
<td>
<b>Sort your windows</b> - However many windows you have open, this button will tile them for you. This is handy if you have a number of windows open at different sizes and want to revert back to a more uniform view.
</td>
</tr>
<tr>
<td width="32"><img src="http://site.poker.betfair.com/publisher2/attachment.servlet/i65771361/att65771590/detwin6_1.gif"/></td>
<td width="8"/>
<td>
<b>Return to standard size</b> - Click this to return to the original window size if you have previously stretched or shrunk it.
</td>
</tr>
</table>
</p>
<p><br/><br/>
   <span id="tables" style="text-decoration: underline;font-weight: bold;">How many tables can I play or watch at the same time?</span></p>

<p>In the new software, you are able to open up to 15 tables. Clicking on the generate window button may stop you at nine windows but you will be able to generate further windows simply by entering tournaments that will auto-generate additional windows.</p>
<p><br/></p>

<p><span id="pokerplus" style="text-decoration: underline;font-weight: bold;">Can you download Betfair Poker Plus on any computer?</span></p>

<p>Running <a href="http://site.poker.betfair.com/download">Betfair Poker Plus</a> requires any given computer to have both an up to date version of DirectX and graphics drivers.</p>

<p>DirectX is simply a free core Windows® technology that drives high-speed multimedia and games on your PC. It is included as part of your standard Windows installation but upgrades are optional and not part of the standard Windows update service. </p>

<p>If your DirectX is not up to date, you will be prompted to upgrade when you first download Betfair Poker Plus and it should just feel like part of the overall upgrade process.</p>

<p>Running <a href="http://site.poker.betfair.com/download">Betfair Poker Plus</a> may also require some players to update their graphics drivers. </p>

<p>If you are prompted to do this you will need to identify your current graphics driver. To do this right-click on the desktop and choose 'Properties', then 'Settings', then 'Advanced', then 'Adapter' and Adapter Type will be shown. It should say something like X800, or Intel 829345G or FX5200 etc. Now go to the relevant site and get your driver (e.g. www.ati.com, www.nvidia.com, www.intel.com, www.dell.com) and find the correct driver for the machine/operating system. Install it and reboot.</p>

<p>If this does not work, your system might not meet the minimal specification to run in this version. Not to worry though, you can still enjoy Betfair Poker by choosing to play in the Standard version of the software. This boasts all of the new features except the ability to re-size your windows.</p>

<p>If you are operating on Windows Vista and experience any problems when attempting to run the poker client please read the instructions within our Help section under Installation.</p>

<p>The new software is unfortunately still not compatible with Apple Mac computers. </p>
<p><br/></p>

<p><span id="problems" style="text-decoration: underline;font-weight: bold;">What can I do if I have problems with Betfair Poker Plus? </span></p>

<p>If you have read through this page and are still having problems downloading the Betfair Poker Plus software then you can contact our 24hr helpdesk team on:</p>

<p>
Email: pokerinfo@betfair.com<br/>
UK: 0870 9080 120<br/>
Outside UK: +44 207 074 7272
</p>

<p>They will endeavour to resolve your issues there and then or alternatively seek advice from the development team and then contact you back as soon as possible. Please bear in mind that some computers will fall under the minimum spec and will therefore be limited to the Standard version of the software.</p>
<p><br/></p>

<p><span id="pledge" style="text-decoration: underline;font-weight: bold;">Betfair Poker Pledge.</span></p>

<p>Betfair Poker is dedicated to producing a stable and fun platform with which to play poker.</p>

<p>Betfair Poker is committed to developing a product that will become the ultimate platform for poker players to enjoy their favourite game. With this overall objective, Betfair Poker will continue to improve their platform week by week, month by month, year by year. </p>
<p><br/><br/>
   <span id="promo" style="text-decoration: underline;font-weight: bold;">Software Launch Promotion </span></p>

<p><a href="http://site.poker.betfair.com/tournaments/special/itemId/i65771358/index.html">Click here</a> to check out our $50,000 promotion to support the launch of <a href="http://site.poker.betfair.com/download">Betfair Poker Plus</a>.</p>]]></description>
            <link>http://betting.betfair.com/poker/tools/poker-plus-211107.html</link>
            <guid>http://betting.betfair.com/poker/tools/poker-plus-211107.html</guid>
            
            <pubDate>Wed, 21 Nov 2007 00:28:22 +0000</pubDate>
        </item>
        
        <item>
            <title>Hold&apos;em or Fold&apos;em</title>
            <description><![CDATA[<h2>Hold'em or Fold'em</h2>
<p>How strong is your starting Texas Hold'em hand?</p>

<p>Find out now with our handy Hold'em or Fold'em starting cards evaluator.</p>

<p>If you're new to the game and find yourself calling a few too many hands in the hope of catching cards then use the  <a href="http://www.betfairpromo.com/holdorfold/" onclick="return openCenteredWindow( this.href, '_blank', 404, 396, 'toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no' );">Hold'em or Fold'em tool</a> to see whether or not you should actually be playing those particular cards.</p>]]></description>
            <link>http://betting.betfair.com/poker/tools/holdem-or-foldem-211107.html</link>
            <guid>http://betting.betfair.com/poker/tools/holdem-or-foldem-211107.html</guid>
            
            <pubDate>Wed, 21 Nov 2007 00:27:32 +0000</pubDate>
        </item>
        
        <item>
            <title>Hand ranking</title>
            <description><![CDATA[	<h2>Hand Ranking</h2>

	<p>These are the standard hand rankings used in the game of Poker. The player holding five cards of the highest value wins the pot.</p>


	<img class="hands" src="http://site.poker.betfair.com/images/suits/hand1_royal_flush.gif" width="340" height="110" alt="Royal Flush"/>
	<h3>Royal Flush:</h3>
	<p>An Ace, King, Queen, Jack, Ten in the same suit.<br />
	If two or more players have a Royal Flush, the pot will be equally split between them.</p>

	<img class="hands" src="http://site.poker.betfair.com/images/suits/hand2_straight_flush.gif" width="340" height="110" alt="Straight Flush"/>
	<h3>Straight Flush:</h3>
	<p>Five cards of the same suit in sequence.<br />
	If two or more players have a Straight Flush: Highest value card at the top of the sequence wins the pot. If two or more players have the same straight flush then the pot is shared.</p>

	<img class="hands" src="http://site.poker.betfair.com/images/suits/hand3_4ofakind.gif" width="340" height="110" alt="Four of a Kind"/>
	<h3>Four of a Kind:</h3>
	<p>Four cards of the same value, plus a side card.<br />
	In the event when there is more than one player with a Four of a Kind; the player with the highest Four of a Kind wins the pot. In Hold'em games, where players have the same four of a kind, the highest fifth side card ("kicker") wins.</p>

	<img class="hands" src="http://site.poker.betfair.com/images/suits/hand4_full_house.gif" width="340" height="110" alt="Full House"/>
	<h3>Full House:</h3>
	<p>A combination of Three of a Kind and a Pair.<br />
	Three of a kind decides the strength of the hand. In "flop" games when players have the same three cards, higher pair wins the pot.</p>

	<img class="hands" src="http://site.poker.betfair.com/images/suits/hand5_flush.gif" width="340" height="110" alt="Flush"/>
	<h3>Flush:</h3>
	<p>Five suited cards.<br />
	When two or more players have a Flush, the player holding the highest value card wins. If necessary, the second-highest, third-highest, etc. can be used to find the winner.</p>

	<img class="hands" src="http://site.poker.betfair.com/images/suits/hand6_straight.gif" width="340" height="110" alt="Straight"/>
	<h3>Straight:</h3>
	<p>Any five cards in sequence.<br />
	The player holding the highest-ranking card at the top of the sequence wins in case of a tie.</p>

	<img class="hands" src="http://site.poker.betfair.com/images/suits/hand7_3ofakind.gif" width="340" height="110" alt="Three of a Kind"/>
	<h3>Three of a Kind:</h3>
	<p>Three cards of the same value and two side cards.</p>

	<img class="hands" src="http://site.poker.betfair.com/images/suits/hand8_two_pair.gif" width="340" height="110" alt="Two Pair"/>
	<h3>Two Pair:</h3>
	<p>Two separate pairs plus a side card.<br />
	If two players have the same highest pair, the value of the second pair determines who wins the pot. If two players have the same Two Pairs, the player holding the highest fifth card "kicker" wins the pot.</p>

	<img class="hands" src="http://site.poker.betfair.com/images/suits/hand9_one_pair.gif" width="340" height="110" alt="One Pair"/>
	<h3>One Pair:</h3>
	<p>Two cards of the same rank and three side cards.<br />
	If two players have the same pair, the next highest card wins, and if necessary, the second-highest and third-highest side card determines who wins the pot.</p>

	<img class="hands" src="http://site.poker.betfair.com/images/suits/hand10_high_card.gif" width="340" height="110" alt="High Card"/>
	<h3>High Card:</h3>
	<p>The player with the highest card wins the pot.</p>
			]]></description>
            <link>http://betting.betfair.com/poker/tools/hand-ranking-211107.html</link>
            <guid>http://betting.betfair.com/poker/tools/hand-ranking-211107.html</guid>
            
            <pubDate>Wed, 21 Nov 2007 00:26:55 +0000</pubDate>
        </item>
        
        <item>
            <title>Poker Buddy</title>
            <description><![CDATA[ <img src="http://site.poker.betfair.com/publisher2/attachment.servlet/i65773518/att65773565/poker-buddy-thumb.jpg" class="left"/><h2>Poker Buddy - Betfair's latest development</h2>  
<h4>Poker Buddy is a completely  free tool to help tune your game and make browsing Hand Histories and tracking  results easier than ever before. Simply download and install the free software.</h4><p><br/></p>

<table><tr><td><img src="http://site.poker.betfair.com/publisher2/attachment.servlet/i65773518/att65773571/smscreen1.jpg" border="0"/></td><td width="10px;"/><td> Poker Buddy can store a  database of all your hand histories on Betfair Poker  in one place, including Cash Games and Tournaments across both Hold'em and Omaha. This makes it  easier than ever to track your results and improve your play over time.<br/><br/>
<ul type="disc">
  <li>View hands from Cash Games and Tournaments. </li>
  <li>View hands from NL/PL Hold'em, Fixed Limit Holdem and PL Omaha.</li>
  <li>Search for hands against specific opponents.</li>
  <li>View Profit &amp; Loss from all cash sessions. </li>
  <li>View all your sessions within a specified period of time.</li>
</ul></td></tr></table><p><br/><br/>
   <br/></p>
<table><tr><td>Poker Buddy makes it easy to  review your Betfair Poker hand  histories at a glance, grouping your hands into sessions for easy browsing. You  can keep track of your profit and loss for different games to see what works  for you. You can even search for hands you've played against specific opponents  to see if you come out on top. <br/><br/>We'll  be adding even more features to Poker  Buddy over the coming months, so watch this space for updates on what else is  new from Betfair Poker!</td>
<td width="10px;"/>
<td><img src="http://site.poker.betfair.com/publisher2/attachment.servlet/i65773518/att65773573/smscreen2.jpg" border="0"/></td>
</tr></table><p><br/><br/></p>

<p><a href="http://cache.poker.betfair.com/Betfair Poker Buddy Browser Installer.msi?rfr=968&amp;sid=0"><img src="http://site.poker.betfair.com/publisher2/attachment.servlet/i65773503/att65773564/button-1 copy.gif" border="0"/></a></p>
<p>Got  a question about Poker Buddy? <a href="http://site.poker.betfair.com/adhoc/itemId/i65773502/index.html">Just click here for our FAQ section</a>.</p>

<p><br/></p>
]]></description>
            <link>http://betting.betfair.com/poker/tools/poker-buddy-201107.html</link>
            <guid>http://betting.betfair.com/poker/tools/poker-buddy-201107.html</guid>
            
            <pubDate>Tue, 20 Nov 2007 20:52:09 +0000</pubDate>
        </item>
        
    </channel>
</rss>