<?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>Geoff Hadley&#039;s Blog &#187; e Commerce</title>
	<atom:link href="http://www.geoffreyhadley.com/category/e-commerce/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.geoffreyhadley.com</link>
	<description>&#34;The Road To Success Is Always Under Construction.&#34;</description>
	<lastBuildDate>Thu, 09 Sep 2010 11:30:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<div id="aml_position">
  <div id="aml">
    <p id="aml_offer">
       <html>
<head>
<title>Enter Your Name And Email To Gain Instant Access To Your Free Report</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#A7B4C7" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="761" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr>
    <td valign="bottom"> 
      <table width="761" border="0" cellspacing="0" cellpadding="0">
        <tr valign="bottom"> 
          <td align="left" width="201"><img src="http://www.instantsqueezepagegenerator.com/sptemplates/images/2_01.jpg" width="284" height="137" alt=""></td>
          <td width="477" height="137" align="center" background="http://www.instantsqueezepagegenerator.com/sptemplates/images/2_02.jpg" valign="top"><br>
            <br><P align=center><font face='Arial' style='font-size:12px; color: #0033CC;font-style: normal; font-weight: normal;'>Enter Your Name And Email To Gain Access To My Free Report</font></P></td>
        </tr>
      </table>
    </td>
  </tr>
  <tr>
    <td background="http://www.instantsqueezepagegenerator.com/sptemplates/images/2_03.jpg" valign="top"> 
      <table width="761" border="0" cellspacing="0" cellpadding="0">
        <tr> 
          <td width="31"> </td>
          <td width="212" valign="top" align="center"> 
            <img src='http://www.instantsqueezepagegenerator.com/sptemplates/products/esw_branded.jpg' width="120" height="140"><br>
          <style type="text/css">
.link,
#SignUp .signupframe {
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	}
	.link {
		text-decoration: none;
		}
	#SignUp .signupframe {
		border: 1px solid #000000;
		background: #ffffff;
		}
</style>
<script type="text/javascript" src="http://app.icontact.com/icp/loadsignup.php/form.js?c=709348&l=1322&f=1413"></script>
<a class="link" href="http://www.icontact.com"><font size="2">Email Marketing You Can Trust</font></a>


          </td>
          <td width="23"> </td>
          <td width="473" valign="top">          
            <p align="center"><font size="5" color="#3366ff">This eBook details the embarrassingly simple way I grabbed the #1 position in Yahoo, Google and AOL for FREE.</font></p>
          </td>
          <td width="22"> </td>
        </tr>
      </table>
    </td>
  </tr>
  <tr>
    <td valign="top"><img src="http://www.instantsqueezepagegenerator.com/sptemplates/images/2_05.jpg" width="761" height="35" alt=""></td>
  </tr>
</table>
<p align="center"><small>
			<br>
			http://www.geoffreyhadley.com 2010<br>Powered By <a href="http://www.instantsqueezepagegenerator.com/index.php?rid=65855" target="_blank">www.InstantSqueezePageGenerator.com</a><br>
 </small></p>
</body>
</html>    </p>
    <p id="aml_buttons">
      <button onclick="aml.onNoThanks()">
        No thanks.      </button>
      <button onclick="aml.onAskMeLater()">
        Ask me later.      </button>
    </p>
  </div>
</div>

<script type="text/javascript">

var closeButton = '<p><button onclick="aml.onClose()">close</button></p>';

var aml = 
{
  show: function() 
  {
     // only show if the cookie is NOT present
     if (! this.suppressed())
     {
	jQuery("#aml").slideDown('slow');
     }
  },

  onNoThanks: function()
  {
     // suppress for 10 years
     this.suppress(365 * 24 * 10, 'h');
     jQuery("#aml")
  	.html('OK. We won\'t ask you again.')
       .append(closeButton);
  },
  
  onAskMeLater: function()
  {
     var firstTime = (document.cookie.indexOf("aml_seen=true") == -1);
     if (firstTime)
     {
	this.suppress(5, 
		      'm');
     }
     else 
     {
	this.suppress(10, 
		      'm');
     }
     jQuery("#aml")
       .html('OK. We\'ll ask you again later.')
       .append(closeButton);
  },



  onClose: function()
  {
     jQuery("#aml").fadeOut();
  },


  suppress: function(delay, unit)
  {
     // now set cookie:

     var h = (unit == 'h') ? delay : 0;
     var m = (unit == 'm') ? delay : 0;
     var s = (unit == 's') ? delay : 0;
     var now = new Date().getTime();

     var date1 = new Date(now + (h*60*60*1000) + (m*60*1000) + (s*1000));
     var newCookie = "aml_suppress=true; expires=" + date1.toGMTString() + "; path=/";
     document.cookie = newCookie;

     // second cookie (10 years)
     // because the initial and subsequent delays may be different
     var date2 = new Date(now + (10*365*24*60*60*1000));
     var newCookie2 = "aml_seen=true; expires=" + date2.toGMTString() + "; path=/";
     document.cookie = newCookie2;
  },

  suppressed: function()
  {
     return document.cookie.indexOf("aml_suppress=true") > -1;
  },

  // debug function:
  eraseCookie: function()
  {
     this.suppress(-1,0); // expire 1 day ago
     alert("cookie expired. hit refresh");
  }
};

setTimeout('aml.show()', 7 * 1000);
</script>
	<item>
		<title>Drive Traffic To Your Website Using Internet Marketing Promotion</title>
		<link>http://www.geoffreyhadley.com/drive-traffic-to-your-website-using-internet-marketing-promotion/</link>
		<comments>http://www.geoffreyhadley.com/drive-traffic-to-your-website-using-internet-marketing-promotion/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 11:04:07 +0000</pubDate>
		<dc:creator>Annie M. Jennings</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[e Commerce]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Those of you who have online businesses know how important it is to have people visit your website. I am going to show you how to drive traffic to your website using internet marketing promotion. There are many ways of achieving this goal once you know how to do it properly. There are a lot of simple things that you can do to help you site find the way to the top of the list.]]></description>
		<wfw:commentRss>http://www.geoffreyhadley.com/drive-traffic-to-your-website-using-internet-marketing-promotion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improve Your Income By Taking The Right Decisions</title>
		<link>http://www.geoffreyhadley.com/improve-your-income-by-taking-the-right-decisions/</link>
		<comments>http://www.geoffreyhadley.com/improve-your-income-by-taking-the-right-decisions/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 14:52:13 +0000</pubDate>
		<dc:creator>Ietske Jol</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[e Commerce]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Myths surrounding affiliate marketing are appealing and fascinating, although quite a few people are inclined to thinking that it's something capable of providing them great amounts of money overnight.]]></description>
		<wfw:commentRss>http://www.geoffreyhadley.com/improve-your-income-by-taking-the-right-decisions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E commerce and Niche Blueprint 2.0</title>
		<link>http://www.geoffreyhadley.com/e-commerce-and-niche-blueprint-20/</link>
		<comments>http://www.geoffreyhadley.com/e-commerce-and-niche-blueprint-20/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 23:49:04 +0000</pubDate>
		<dc:creator>geoff</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[Niche Blueprint 2.0]]></category>
		<category><![CDATA[e Commerce]]></category>

		<guid isPermaLink="false">http://www.geoffreyhadley.com/e-commerce-and-niche-blueprint-20/</guid>
		<description><![CDATA[There is no doubt that loads of money can be made with eCommerce. However, most people fail to start or stop in the middle of their actions for one simple reason! They have no idea what or how to sell their product, when they have eventually found one. One big problem they are confronted with, [...]]]></description>
		<wfw:commentRss>http://www.geoffreyhadley.com/e-commerce-and-niche-blueprint-20/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
