<?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>Mike Myers</title>
	<atom:link href="http://mikemyers.me/feed/" rel="self" type="application/rss+xml" />
	<link>http://mikemyers.me</link>
	<description></description>
	<lastBuildDate>Thu, 29 Jul 2010 22:41:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<div id="wpos_position">
  <div id="wpos">
    <p id="wpos_offer">
       <p><span style="font-family: Arial,Helvetica,sans-serif; font-size: medium;"><strong>How would you like some free gifts?</strong></span> <br /><span style="font-family: Arial,Helvetica,sans-serif; font-size: x-small;"> You can get 10 free gifts just by putting your name and email in the boxes below.  In a couple of days I will send you some more free goodies.</span><br />
<script src="http://forms.aweber.com/form/35/1583598335.js" type="text/javascript"></script>
</p>    </p>
        <input type="image" src="wp-content/plugins/coolpop/images/closebutton.png" name="wpos_CloseIcon" id="wpos_CloseIcon" onMouseOver="wpos.onHover()" onMouseOut="wpos.onHoverOut()" onclick="wpos.onClose()" width=32 height=32>
  </div>
</div>

<script type="text/javascript">

function wpos_setPosition() {
	//locate the box where they want it
	var posType = 'a';
	var posHAlign = 'c';
	var posVAlign = 't';
	var posBuffer = 20;
	var posWidth = 300;
	var posHeight = 500;

	var winW = 630, winH = 460;

	//find the window height and width (works with all browsers)
	if (parseInt(navigator.appVersion)>3) {
	 	if (navigator.appName.indexOf("Microsoft")!=-1) {
	  		winW = document.body.offsetWidth;
	  		winH = document.body.offsetHeight;
	 	} else {
			winW = window.innerWidth;
			winH = window.innerHeight;
		 }
	}
	
	if ( posType == 'a' ) {
		if (posHAlign == "l") {
			jQuery("#wpos").css("left",posBuffer);
		}

		//alert(posBuffer + "\r\n" + posWidth + "\r\n" + ((posBuffer + posWidth) / 2));
		if (posHAlign == "c") {
			jQuery("#wpos").css("left",(winW / 2) - ((posBuffer + posWidth) / 2));
		}

		if (posHAlign == "r") {
			jQuery("#wpos").css("left",winW - (posBuffer + posWidth + 45));
		}

		if (posVAlign == "t") {
			jQuery("#wpos").css("top",posBuffer);
		}

		//alert(posBuffer + "\r\n" + posWidth + "\r\n" + ((posBuffer + posWidth) / 2));
		if (posVAlign == "c") {
			jQuery("#wpos").css("top",(winH / 2) - ((posBuffer + posHeight) / 2));
		}

		if (posVAlign == "b") {
			jQuery("#wpos").css("top",winH - (posBuffer + posHeight + 45));
		}
		
	}

	jQuery("#wpos_CloseIcon").css("top", 5);
	var posLeftButton = jQuery("#wpos").css("left").replace("px","");
	jQuery("#wpos_CloseIcon").css("left", posWidth);
	}
	
var closeButton = '<p><button onclick="wpos.onClose()">close</button></p>';

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

  onNoThanks: function()
  {
     // suppress for 10 years
     this.suppress(365 * 24 * 10, 'h');
     if ('' == '') {
    	 jQuery("#wpos").fadeOut();
     } else {
     	jQuery("#wpos")
  			.html('')
       		.append(closeButton);
     }
  },
  
  onAskMeLater: function()
  {
     
	this.suppress(1, 
		      'h');

	jQuery("#wpos").fadeOut();
  },



  onClose: function()
  {
	  jQuery("#wpos").fadeOut();
	  this.incrementViewCount();
  },

  onHover: function()
  {
	  jQuery("#wpos_CloseIcon").css("opacity", 1);
  },

  onHoverOut: function()
  {
	  jQuery("#wpos_CloseIcon").css("opacity", .2);
  },


  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;
     this.setCookie("wpos_suppress", "true", (h*60*60*1000) + (m*60*1000) + (s*1000));
     
     //var now = new Date().getTime();

     //var date1 = new Date(now + (h*60*60*1000) + (m*60*1000) + (s*1000));
     //var newCookie = "wpos_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 = "wpos_seen=true; expires=" + date2.toGMTString() + "; path=/";
     //document.cookie = newCookie2;
  },

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

  isOkToShow: function()
  {
	var displayCount = this.getCookie("wpos_displayCount");

	if (parseInt(displayCount) > parseInt('2'))
		return false;
	else
		return true;
	
  },

  incrementViewCount: function()
  {
	  var displayCount = this.getCookie("wpos_displayCount");

	  if (displayCount == "")
		  displayCount = 1;
	  else
		  displayCount = parseInt(displayCount) + 1;

	  this.setCookie("wpos_displayCount", displayCount, (10*365*24*60*60*1000));
	  this.suppress(24, 
		      'h');
	  
     return;
  },

  checkPopoverID: function()
  {
	  var popOverID = this.getCookie("wpos_popOverID");

	  if (popOverID != '1') {
		  this.setCookie("wpos_displayCount", '0', -(24*60*60*1000));
		  this.setCookie("wpos_suppress", '0', -(24*60*60*1000));
		  this.setCookie("wpos_popOverID", '1', (10*365*24*60*60*1000));
	  }
	  
     return;
  },

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

  setCookie: function (c_name,value,expireminutes)
  {
	var now = new Date().getTime();
  	var exdate=new Date(now + expireminutes);
  	
  	document.cookie=c_name+ "=" +escape(value)+
  	((expireminutes==null) ? "" : ";expires="+exdate.toUTCString());
  },
  
  getCookie: function (c_name)
  {
  	if (document.cookie.length>0)
    	{
    	c_start=document.cookie.indexOf(c_name + "=");
    	if (c_start!=-1)
     		{
     		c_start=c_start + c_name.length+1;
      		c_end=document.cookie.indexOf(";",c_start);
      		if (c_end==-1) c_end=document.cookie.length;
      		return unescape(document.cookie.substring(c_start,c_end));
      		}
    	}
  	return "";
  }
};

wpos.checkPopoverID();

setTimeout('wpos.show()', 5 * 1000);

wpos.onHoverOut();
</script>
	<item>
		<title>Health Giving Yoga</title>
		<link>http://mikemyers.me/health-giving-yoga/</link>
		<comments>http://mikemyers.me/health-giving-yoga/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 22:41:39 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Friends Products]]></category>

		<guid isPermaLink="false">http://mikemyers.me/health-giving-yoga/</guid>
		<description><![CDATA[Take A Few Minutes Each Day, Do Some Simple YOGA Exercises And Change Your Life For &#8230; Read More: Health Giving Yoga Tweet This PostRelated PostsNo Related Posts]]></description>
		<wfw:commentRss>http://mikemyers.me/health-giving-yoga/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where Can I Find My Niche? Finding Your Ideal Prospects So You Can Sell To Them</title>
		<link>http://mikemyers.me/where-can-i-find-my-niche-finding-your-ideal-prospects-so-you-can-sell-to-them/</link>
		<comments>http://mikemyers.me/where-can-i-find-my-niche-finding-your-ideal-prospects-so-you-can-sell-to-them/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 13:00:32 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[IM Tips]]></category>
		<category><![CDATA[finding niche]]></category>

		<guid isPermaLink="false">http://mikemyers.me/?p=952</guid>
		<description><![CDATA[Most marketing experts will tell you that you need select a niche or a target audience. That you can&#8217;t just market to &#8220;whoever is paying attention&#8221; and be successful. Why is that? Think about it this way: if you are having a conversation with a total stranger, how do you know what to talk about? [...]]]></description>
		<wfw:commentRss>http://mikemyers.me/where-can-i-find-my-niche-finding-your-ideal-prospects-so-you-can-sell-to-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Affiliation DR</title>
		<link>http://mikemyers.me/multiple-affiliation-dr/</link>
		<comments>http://mikemyers.me/multiple-affiliation-dr/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 21:34:08 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Friends Products]]></category>

		<guid isPermaLink="false">http://mikemyers.me/multiple-affiliation-dr/</guid>
		<description><![CDATA[Un Système TOUT-EN-UN Qui Fonctionne pour&#8230; TOUS les Membres Adhérants Read More: Multiple Affiliation DR Tweet This PostRelated PostsNo Related Posts]]></description>
		<wfw:commentRss>http://mikemyers.me/multiple-affiliation-dr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It is 107 in Maryland today. W&#8230;</title>
		<link>http://mikemyers.me/it-is-107-in-maryland-today-w/</link>
		<comments>http://mikemyers.me/it-is-107-in-maryland-today-w/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 21:28:26 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://mikemyers.me/it-is-107-in-maryland-today-w/</guid>
		<description><![CDATA[It is 107 in Maryland today. Way too hot. Tweet This PostRelated PostsNo Related Posts]]></description>
		<wfw:commentRss>http://mikemyers.me/it-is-107-in-maryland-today-w/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 3 Ways To Boost Your Affiliate Commissions Overnight</title>
		<link>http://mikemyers.me/top-3-ways-to-boost-your-affiliate-commissions-overnight/</link>
		<comments>http://mikemyers.me/top-3-ways-to-boost-your-affiliate-commissions-overnight/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 13:00:23 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[affiliate marketing]]></category>

		<guid isPermaLink="false">http://mikemyers.me/?p=949</guid>
		<description><![CDATA[The ideal world of affiliate marketing does not require having your won website, dealing with customers, refunds, product development and maintenance. This is one of the easiest ways of launching into an online business and earning more profits.

Assuming you are already into an affiliate program, what would be the next thing you would want to do? Double, or even triple, your affiliate commissions, right? How do you do that?]]></description>
		<wfw:commentRss>http://mikemyers.me/top-3-ways-to-boost-your-affiliate-commissions-overnight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50 Fast Money Methods PLR Package</title>
		<link>http://mikemyers.me/50-fast-money-methods-plr-package/</link>
		<comments>http://mikemyers.me/50-fast-money-methods-plr-package/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 21:32:33 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Friends Products]]></category>

		<guid isPermaLink="false">http://mikemyers.me/50-fast-money-methods-plr-package/</guid>
		<description><![CDATA[PLR &#8211; 50 Online/Offline Fast Money Methods PLR Package is an incredible content pack. It &#8230; Read More: 50 Fast Money Methods PLR Package Tweet This PostRelated PostsNo Related Posts]]></description>
		<wfw:commentRss>http://mikemyers.me/50-fast-money-methods-plr-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IMI Organizer Map with MRR</title>
		<link>http://mikemyers.me/imi-organizer-map-with-mrr/</link>
		<comments>http://mikemyers.me/imi-organizer-map-with-mrr/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 21:31:01 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Friends Products]]></category>

		<guid isPermaLink="false">http://mikemyers.me/imi-organizer-map-with-mrr/</guid>
		<description><![CDATA[The IMI Organizer MAP - Designed By A Professional Knowledge Management Expert - Read More: IMI Organizer Map with MRR Tweet This PostRelated PostsNo Related Posts]]></description>
		<wfw:commentRss>http://mikemyers.me/imi-organizer-map-with-mrr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Social Ads Exposed</title>
		<link>http://mikemyers.me/facebook-social-ads-exposed/</link>
		<comments>http://mikemyers.me/facebook-social-ads-exposed/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 20:29:49 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Friends Products]]></category>

		<guid isPermaLink="false">http://mikemyers.me/facebook-social-ads-exposed/</guid>
		<description><![CDATA[FREE 30-page PDF on Facebook advertising and marketing tips which you can easily rebrand &#8230; Read More: Facebook Social Ads Exposed Tweet This PostRelated PostsNo Related Posts]]></description>
		<wfw:commentRss>http://mikemyers.me/facebook-social-ads-exposed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are You Too Busy To Keep Fit</title>
		<link>http://mikemyers.me/are-you-too-busy-to-keep-fit/</link>
		<comments>http://mikemyers.me/are-you-too-busy-to-keep-fit/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 19:47:31 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Friends Products]]></category>

		<guid isPermaLink="false">http://mikemyers.me/are-you-too-busy-to-keep-fit/</guid>
		<description><![CDATA[Discover The Simple Way, You Know You&#8217;ll Feel Better For It! Need To Get In Shape? &#8230; Read More: Are You Too Busy To Keep Fit Tweet This PostRelated PostsNo Related Posts]]></description>
		<wfw:commentRss>http://mikemyers.me/are-you-too-busy-to-keep-fit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 15 Ways Solo-prenuers Use Virtual Assistants</title>
		<link>http://mikemyers.me/top-15-ways-solo-prenuers-use-virtual-assistants/</link>
		<comments>http://mikemyers.me/top-15-ways-solo-prenuers-use-virtual-assistants/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 13:00:36 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[IM Tips]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[internet marketing lifestyle]]></category>
		<category><![CDATA[virtual assistant]]></category>
		<category><![CDATA[virtual assistants]]></category>

		<guid isPermaLink="false">http://mikemyers.me/?p=942</guid>
		<description><![CDATA[Your time and money are worth more when you are able to concentrate on what you do best and leave the rest to an assistant. Virtual office assistants work from their own home-based offices and are highly trained in their skill areas as well as a variety of technologies. Many of them have advanced degrees as well as years of professional experience. Not only can a virtual assistant relieve you of mundane, everyday tasks, but also in many cases, s/he can even help you grow your business.]]></description>
		<wfw:commentRss>http://mikemyers.me/top-15-ways-solo-prenuers-use-virtual-assistants/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
