<?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>SEO News and SEO Tips from SEO Blog Expert</title>
	<atom:link href="http://blog.theexpertseo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.theexpertseo.com</link>
	<description>free seo, inexpensive seo, information seo, search engine optimization seo, seo, seo advertising, seo blog, seo expert, seo forum, seo news, seo optimization, seo positioning, seo promotion, seo ranking, seo services, seo tip</description>
	<lastBuildDate>Thu, 19 Aug 2010 16:31:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>What is the .htaccess File, and What Can I Do With It?</title>
		<link>http://blog.theexpertseo.com/what-is-the-htaccess-file-and-what-can-i-do-with-it/</link>
		<comments>http://blog.theexpertseo.com/what-is-the-htaccess-file-and-what-can-i-do-with-it/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 16:31:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[What is the .htaccess]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=199</guid>
		<description><![CDATA[You may have been working on a website, or reading an article about web development, and heard about the .htaccess file, but wondered what it was, or what, if anything, you can do with it. This tutorial will tell you the basics about .htaccess, and show you a few ways you can use it on [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You may have been working on a website, or reading an article about web development, and heard about the .htaccess file, but wondered what it was, or what, if anything, you can do with it. This tutorial will tell you the basics about .htaccess, and show you a few ways you can use it on your website.</p>
<p style="text-align: justify;">Before we go any farther, let&#8217;s explain what the .htaccess file is. htaccess is short for Hypertext Access, and is a configuration file used by Apache-based web servers that controls the directory that it &#8220;lives&#8221; in&#8211;as well as all the subdirectories underneath that directory.</p>
<p style="text-align: justify;">Many times, if you have installed a Content Management System (CMS), such as Drupal, Joomla or Wordpress, you likely encountered the .htaccess file. You may not have even had to edit it, but it was among the files that you uploaded to your web server. BTW, that&#8217;s its name, .htaccess&#8211;it begins with a period, and ends with &#8220;htaccess.&#8221; If you edit it, you need to make sure that it stays that way, and doesn&#8217;t end up with a .txt or .html extension.</p>
<p style="text-align: justify;">Also note that some web hosts do not allow you to edit the .htaccess file&#8211;but even on most of those hosts, you can create your own .htaccess file and upload it to specific directories, and as discussed above, it will control those directories and subdirectories below it.</p>
<p style="text-align: justify;">Some of the features of the .htaccess file include the ability to password protect folders, ban users or allow users using IP addresses, stop directory listings, redirect users to another page or directory automatically, create and use custom error pages, change the way files with certain extensions are utilized, or even use a different file as the index file by specifying the file extension or specific file.</p>
<h2 style="text-align: justify;">Custom Error Pages for Better SEO</h2>
<p style="text-align: justify;">One use of the .htaccess file is to redirect users to a custom error page depending on the specific web server error they encounter. By using a custom error page, you can present them with a list of your site&#8217;s top articles, a sitemap with links to the various areas of your site, and it can include your site&#8217;s navigation system. It can also feature a FAQ, so folks who are looking for information on your site, but can&#8217;t find it, are able to narrow down the location of that information on your site without leaving, going back to the search engine, and more than likely not returning to your site.</p>
<p style="text-align: justify;">It&#8217;s not difficult to use the .htaccess file to redirect users to a custom error page&#8211;but to do it you&#8217;ll need to know the proper error code. The most common ones you&#8217;ll use are:</p>
<ul style="text-align: justify;">
<li>400 &#8211; Bad request</li>
<li>401 &#8211; Authorization Required</li>
<li>403 &#8211; Forbidden</li>
<li>404 &#8211; File Not Found</li>
<li>500 &#8211; Internal Server Error</li>
</ul>
<p style="text-align: justify;">To use .htaccess with these codes, first you&#8217;ll need to open up your favorite text editor, create a new document, and in that document, specify the error message that you&#8217;ll be redirecting like this:</p>
<pre style="text-align: justify;">ErrorDocument 404 /filenotfound.html
</pre>
<p style="text-align: justify;">If you wanted to redirect users for another error, such as 500, Internal Server Error, you would do it like this (and so on):</p>
<pre style="text-align: justify;">ErrorDocument 500 /servererror.html
</pre>
<p style="text-align: justify;">Then you&#8217;d just save the .htaccess file (remembering to check that it is saved just like that, without some additional extension), and upload it to your web host&#8217;s root directory (or whatever directory you are wanting to use it in).</p>
<h2 style="text-align: justify;">Using a Different File as the Index File</h2>
<p style="text-align: justify;">By adding another &#8220;command&#8221; to the .htaccess file, you can use a different file as the main index file that folks see when they come to your site. In other words, when folks visit www.yoursite.com, usually they are presented with www.yoursite.com/index.html or www.yoursite.com/index.php&#8211;but often you have created a special page that you want to use as your site&#8217;s main page&#8211;and it isn&#8217;t any of the traditional pages. Or you may want to take advantage of the latest version of PHP&#8230;there are many reasons for needing to use a different file as the index file. Here&#8217;s how you would do it, with each type of file being next in line, if the others are not in the directory.</p>
<pre style="text-align: justify;">DirectoryIndex index.php3 index.php pictures.pl index.html default.htm
</pre>
<p style="text-align: justify;">For instance, if there was no file named index.php3 in your directory, then the server would look for a file called index.php. If that file wasn&#8217;t present, it would look for one called pictures.pl, and so on. In our next article, we&#8217;ll look at other types of redirection, password protection and we&#8217;ll show you how to allow or deny users with specific IP addresses from accessing your site.</p>
<p style="text-align: justify;">By   <a href="http://www.htmlgoodies.com/feedback.php/http://www.htmlgoodies.com/beyond/webmaster/article.php/3899416">Scott Clark</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/what-is-the-htaccess-file-and-what-can-i-do-with-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7’s Worst Features</title>
		<link>http://blog.theexpertseo.com/windows-7%e2%80%99s-worst-features/</link>
		<comments>http://blog.theexpertseo.com/windows-7%e2%80%99s-worst-features/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 11:50:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[TopNews]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=197</guid>
		<description><![CDATA[Windows 7 fixed many of Vista&#8217;s ills, but it also introduced a few of its own.
There’s a lot to love about the Windows 7 operating system: it’s fast, it looks great, and it has some cool features&#8211;like Jump Lists for quickly opening recently used files, Homegroup for sharing files between computers, and Aero Snap to [...]]]></description>
			<content:encoded><![CDATA[<h2>Windows 7 fixed many of Vista&#8217;s ills, but it also introduced a few of its own.</h2>
<p style="text-align: justify;">There’s a lot to love about the Windows 7 operating system: it’s fast, it looks great, and it has some cool features&#8211;like Jump Lists for quickly opening recently used files, Homegroup for sharing files between computers, and Aero Snap to help you quickly organize your open desktop windows.</p>
<p style="text-align: justify;">Windows 7 is addresses some of the problems that plagued its predecessor, Windows Vista, such as the Universal Access Control security system, the constant stream of notifications, and the lack of device drivers for printers and other peripherals.</p>
<p style="text-align: justify;">Microsoft hasn’t solved all of those issues&#8211;in fact, getting Windows 7 drivers for some printers continues to be a struggle&#8211;but so far Windows 7 is a vast improvement over Vista, despite their underlying similarities.</p>
<p style="text-align: justify;">That said, Windows 7 has downsides of its own. Some of the problems involve minor inefficiencies that grow annoying over time; others truly degrade the user experience through lack of functionality, poor organization, or an overabundance of choice. Here are the problem children of Windows 7&#8211;the faulty features I found in the Home Premium version of Microsoft’s latest OS.</p>
<h2 style="text-align: justify;">When Clicking Isn’t Switching</h2>
<p style="text-align: justify;">If you’re looking for a good reason never to use Internet Explorer 8 in Windows 7, try this: Open multiple tabs in IE 8, and open a Microsoft Word document. Then click the IE icon in the taskbar, and&#8230;nothing happens. Instead of switching over to Internet Explorer as you&#8217;d expect it to, Windows 7 greets you with miniature pop-ups for every tab you’ve opened in IE and asks you to choose the one you’d like to go to.</p>
<p style="text-align: justify;"><span><img src="http://images.pcworld.com/news/graphics/195154-switchingisnt2_original.jpg" alt="Windows 7 Aero Peek; click for full-size image." /><span>Windows 7’s Aero Peek offers some helpful features, but also makes switching between programs with multiple windows harder to do quickly.</span></span>This feature, called Aero Peek, is actually a nice idea, since you get to choose the tab you want to see. But we’ve been trained for years to expect to switch to a new program when we click on its icon in the taskbar, so why change the behavior now? In Windows 7, many Microsoft-made programs (including Microsoft Office, Internet Explorer 8, and Windows Live Messenger) use this feature. But since you can also activate Aero Peek by hovering over a taskbar icon instead of clicking it, a better solution for Windows 7 would be, hover to peek but click to switch.</p>
<h2 style="text-align: justify;">The Automatic Switch</h2>
<p style="text-align: justify;">Thanks to another Aero Peek function, when you move your pointer over any of the small pop-ups, you suddenly find yourself in the new program&#8211;except that you aren&#8217;t really there. When you mouse over a pop-up, the corresponding application fills the screen, but when you move the pointer to go to the app the app disappears. The purpose of this feature is to enable you to quickly navigate to another program like IE, refer to something in the browser, and then jump back to where you were. But suppose that you’re in Microsoft Word and you jump over to IE 8 to check out a news item on CNN. As you read the article, you decide to click an accompanying video&#8211;but the moment you move your mouse, you’re back in Microsoft Word. That’s not helpful; it’s frustrating.</p>
<p style="text-align: justify;">Windows 7 behaves similarly when you hover over &#8216;All programs&#8217; in the Start Menu. Hover too long over ‘All programs&#8217;, and Windows 7 will switch to your full programs list instead of remaining in the primary Start Menu. Unfortunately, this little trick takes just under 2 seconds to pull off, which is too slow to be useful but just fast enough to be annoying.</p>
<div style="text-align: justify;">
<h2>Too Many Notifications</h2>
<p>Windows 7 greatly improves on Vista by cutting down the number of system notification pop-ups that interrupt you during a Windows session&#8211;but there’s still room to cut down on the excess. For example, Windows 7 issues an “Information” notice when you plug headphones or speakers into your computer’s headphone jack. You can’t get a virus through a headphone jack, though, so why alert me to something so innocuous?</p>
<p>The most ridiculous alert I’ve encountered was an update telling me that Windows 7 was going to check for a system update at 3 a.m. Do I need to know this? Just do the update; and if you need my authorization to proceed, let me know when it’s time. My computer should work on my schedule, not interrupt me with details about its itinerary.</p>
<h2>User Account Control</h2>
<p>When it introduced UAC in Windows Vista, Microsoft hailed it as a significant step toward making Windows systems more secure. But most users detested UAC&#8211;in particular, the way it blanked out the screen and then repeatedly asked whether they really wanted to install something. Microsoft has made the UAC in Windows 7 dramatically better, with fewer screen blank outs (you can even turn them off) and alerts. Still, there must be a better way than UAC to handle security issues.</p>
<h2>Windows Live an Essential Hassle</h2>
<p><span> </span>With Windows 7, Microsoft has removed some basic programs from the operating system and bundled them in a free download called Windows Live Essentials. Windows Live programs include Windows Live Mail (the successor to Outlook Express), Messenger, Movie Maker, Photo Gallery, Call, and Writer (a blogging tool). Microsoft says that it decided to make these programs available as a download, instead of including them with Windows 7, so that it could update the applications “without being tied to the OS upgrade cycle.”</p>
<p>The drawback of the Windows Live Essentials download is that it adds a step to the initial Windows 7 setup process. Given that Live Essentials are basic programs that most users will want to have at their fingertips, why not figure out a way to bundle them with new computers right out of the box?</p>
<h2>Persistent Gadgets</h2>
<p>I’ve never been a huge fan of gadgets, but they can be helpful for quickly checking a flight time or weather forecast. In Windows 7, you can put gadgets anywhere on your desktop; but just as in Vista, you don’t have an automatic hide option for gadgets. Instead, to make your gadgets disappear, you have to right-click your desktop, select View, and uncheck &#8216;Show desktop gadgets&#8217;.</p>
<p><span><img src="http://images.pcworld.com/news/graphics/195154-gadgetgallery2_original.jpg" alt="Windows 7 Gadgets; click for full-size image." /><span>Gadgets can be helpful when you want quick access to things such as weather forecasts and flight times, but they lack an automatic hide option to keep your desktop tidy when you don’t need them.</span></span>That’s not a very convenient procedure, so your gadgets are likely to remain visible on your desktop pretty much all the time. An automatic hide option that would enable you to make gadgets reappear with a keystroke would be a nice thing for users who value a clean desktop.</p>
<div>
<h2>Complicated Themes</h2>
<p>All I wanted to do was change my desktop background&#8211;not get new system sounds or a new color scheme or a new mouse pointer. In XP, adopting one of my own photos as my desktop background took just a few clicks; and even in Windows Vista, the process was pretty straightforward. But Windows 7&#8217;s themes take changing your desktop background to a new and unpleasant level of complication.</p>
<p>Themes in Windows 7 are predefined profiles that compile everything from your system sounds, screen savers, and windows colors in one place, where you can activate them with just one click. For the most part this is a great and highly customizable feature, but one of the things people are most likely to want to change is their desktop background. So why not make this basic act something you can do on the fly in just a few clicks, instead of the confusing rigmarole Windows 7 makes you go through now?</p>
<h2>Vague Control Panel</h2>
<p>The problem with the Control Panel started with Windows XP&#8217;s introduction of Classic View. In truth, there’s nothing classic about this view, and &#8220;Standard View&#8221; would be a more apt name for it. Though the Classic View in XP has a very practical organizational structure, Microsoft insisted on switching to a new default organization in Windows 7 called ‘Category.’</p>
<p>Supposedly, Category provides a simplified version of the Control Panel; but in reality it’s vague, confusing, and much harder to navigate. The display closest to the Control Panel&#8217;s old Classic View is called ‘Large icons’, and you select it in the ‘View by’ drop-down menu in the upper right corner of the Control Panel window.</p>
<p>The other trouble with the Control Panel is that, ever since Vista, some icons have acquired more-confusing names. The straightforward &#8216;Add or remove programs&#8217;, became &#8216;Programs and Features&#8217;, and ‘Accessibility Options’ became ‘Ease of Access Center&#8217;. Give me that old-time Windows 98 Control Panel any day.</p>
<h2>Screenshots: Easy but Not Simple</h2>
<p>Creating screen grabs, which I do every day, has always been a chore in Windows. Before Windows 7 you had to press Ctrl-Print Screen, open a program such as Windows Paint, paste the image into Paint, and then save it. You can still do this in Windows 7, but Microsoft has tried to make the screenshot process easier by introducing the Snipping Tool. To access this new application, clicking <em>Start</em>, <em>Accessories</em>, <em>Snipping Tool</em>.</p>
<p><span><img src="http://images.pcworld.com/news/graphics/195154-snippingtool3_original.jpg" alt="Windows 7 Snipping Tool; click for full-size image." /><span>The Windows 7 Snipping Tool is the most efficient way yet to capture screenshots in Windows, but Mac OS X&#8217;s approach is simpler still.</span></span>The Snipping Tool offers such options as a one-window snip, a full-screen snip, a rectangular snip that you frame yourself, and a free-form snip for tablet computers. You select the snip you want, the application performs the action, and then you save. But again, Windows 7 falls short by making the screen capture path unnecessarily difficult.</p>
<p>In contrast, Mac OS X gives you two basic choices for screen grabs: Command-Shift-3 takes a shot of the whole screen; and Command-Shift-4 lets you frame your own shot. Screenshots in OS X are saved directly to your desktop as a Portable Network Graphic file (.png). Like the Snipping Tool, Mac OS X offers various other screenshot options, but in OS X the variations use keyboard shortcuts and don’t require you to open any applications. Microsoft should create a similarly easy method for capturing screenshots.</p>
<p><strong>Tip:</strong> To make screen grabs a little easier, create a keyboard shortcut to the Snipping Tool. Click <em>Start</em>, <em>Accessories</em>, and right-click <em>Snipping Tool</em>, <em>Properties</em>. Move your cursor into the Shortcut tab’s entry box, enter <strong>s</strong> (or any other keystroke), and click <em>apply</em>. From now on, whenever you type Ctrl-Alt-s, the Snipping Tool should open up.</p>
<h2>Elusive &#8216;My Documents&#8217; Folder</h2>
<p>Wondering what happened to your old ‘My Documents’ folder (from Windows XP) in Windows 7? In a practical sense, My Documents has become ‘Documents’&#8211;but that description isn&#8217;t quite accurate. Actually, Windows 7 introduced a new file hierarchy called Libraries that differs from the file systems in previous versions of Windows. As a result of this change, the My Documents folder rarely appears in the main section of Windows Explorer in Windows 7. Instead, it sits in the side panel on the left under Libraries, Documents, My Documents, but it almost never appears in the main window.</p>
<p>The new arrangement is helpful in that you can see the My Documents subfolders right away; it also reduces the number of clicks needed to get to the folder’s contents. But the new hierarchy provides what appear to be two places to save a document, though in fact you end up in the same location either way you do it.</p>
<p>To illustrate this, save a file to My Documents in Windows 7: Select <em>Libraries</em>, <em>Documents</em>, <em>My Documents</em>; once your document is saved, right-click the file and select <em>Properties</em>. Under ‘Location’ you should see something like &#8216;C:\ Users\USERNAME\Documents&#8217;. But didn’t you save that file directly to the ‘My Documents’ folder? So shouldn’t it be &#8216;C:\Users\USERNAME\Documents\MyDocuments&#8217;?</p>
<p>If you use the left navigation pane in Windows 7 to get to My Documents, you’ll still see your file listed as part of the My Documents folder, but you’ll also see it standing alone in the Documents view one level up. So Windows 7 appears to the user to maintain two different navigation structures for getting to the same file: Libraries, Documents, My Documents, FILENAME, and Libraries, Documents, FILENAME.</p>
<p>It may be a great way to organize your files, but I find it redundant. Windows 7 should either discard the My Documents folder or embrace it; the OS shouldn&#8217;t try to do both at the same time.</p>
<h2>The Exclusivity of Homegroups</h2>
<p>Homegroup in Windows 7 lets you easily share documents, music, pictures, and videos between different computers at home. It’s a great feature, except that it only works with Windows 7 computers. It’s a shame that Microsoft hasn’t brought this functionality to computers running Windows Vista. You can still share files between Vista and Windows 7 PCs through Windows Media Player, or you can set up a home network the old-fashioned way under Network Settings. But I wish that Microsoft had brought Homegroup to Windows Vista&#8211;and enabled Homegroup to share with Mac OS X computers, too.</p>
<p>For the most part, Windows 7 is an excellent operating system that includes an array of great new features as well as some basic improvements on its predecessors. I’ve never seen Windows interact so seamlessly with peripheral USB devices, for example; and monitoring your default and startup programs in the new OS is remarkably easy. But if Microsoft tweaked a few more things in Windows 7, the experience would be nearly perfect.</p>
<p>news source &#8211; pcworld.com</p></div>
</div>
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/windows-7%e2%80%99s-worst-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Article Submission &amp; Article Distribution Sites</title>
		<link>http://blog.theexpertseo.com/article-submission-article-distribution-sites/</link>
		<comments>http://blog.theexpertseo.com/article-submission-article-distribution-sites/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 02:58:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Article Submission]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=195</guid>
		<description><![CDATA[Article Submission Sites

This Page is republished with permission from ArticlePR.com, its original source, and with our sincere thanks to Glenn Murray from ArticlePR and DivineWrite.com for the tremendous effort he put into producing this information.
This is a really great site with loads of information on article marketing.
Add a site or report a broken link – [...]]]></description>
			<content:encoded><![CDATA[<h2>Article Submission Sites</h2>
<div class="entry">
<p><em>This Page is republished with permission from <a href="http://www.articlepr.com" target="_blank">ArticlePR.com</a>, its original source, and with our sincere thanks to Glenn Murray from <span onmouseover="balloon.showTooltip(event,'load:tooltip1')">ArticlePR</span> and <a href="http://www.divinewrite.com" target="_blank">DivineWrite.com</a> for the tremendous effort he put into producing this information.</em></p>
<div id="tooltip1" style="display:none;">This is a really great site with loads of information on article marketing.</div>
<p><strong>Add a site or report a broken link</strong> – This list is maintained manually, so we’d really appreciate it if you could point out any broken links or links that point to questionable sites. Also, if you know of an article submission site or article distribution list that isn’t listed here, we’d love to hear about it. Please Contact Us, and we will update our page and also pass on the info to <a href="http://www.articlepr.com" target="_blank">ArticlePR.com</a>.</p>
<table class="noborder" border="0">
<tbody>
<tr>
<td>
<h2>List of Article Submission Sites &amp; Article Distribution Lists</h2>
<p>The following table contains several hundred article submission sites and article distribution lists. These are ALL the sites I’ve used to achieve my top ranking (for divinewrite.com).</p>
<p><strong>Jump to:</strong></p>
<p><a href="#article_submission_sites">Article Submission Sites</a></p>
<p><a href="#article_distribution_lists">Article Distribution Lists</a></p>
<hr />
<h2><a id="article_submission_sites" name="article_submission_sites">Article Submission Sites</a></h2>
<p>Article submission sites are websites that act as ‘article banks’. They allow authors of articles to post their articles on the site for free, and they allow webmasters who need content to copy those articles for free (in exchange for a link to the author’s website).</p>
<table class="noborder" border="0">
<tbody>
<tr>
<td>
<h3>TIP:</h3>
</td>
<td>
<blockquote><p>I’ve tried to order the article submission sites by their Alexa ranking, with the <strong>most popular at the top</strong>. This way, if you don’t get to the bottom of the list, you’ve still managed to submit your article to the most popular article submission sites (giving it more exposure).</p></blockquote>
</td>
</tr>
</tbody>
</table>
<table class="margins" border="0">
<tbody>
<tr>
<th>Site</th>
<th>HTML Allowed in Byline? (Y/N)</th>
<th>Login Required (Y/N)</th>
<th>Notes</th>
</tr>
<tr>
<td><a href="http://www.digg.com" target="_blank">Digg</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.ezinearticles.com" target="_blank">Ezine Articles</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>See their <a href="http://ezinearticles.com/editorial-guidelines.html" target="_blank">editorial guidelines</a>, but specifically DO NOT USE Paragraph or Break tags. Instead, use normal paragraph breaks in Word. No more than 3 self-serving links.</td>
</tr>
<tr>
<td><a href="http://www.goarticles.com" target="_blank">Go Articles</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>Max 15,000 characters.</td>
</tr>
<tr class="altrow">
<td><a href="http://www.contentdesk.com" target="_blank">Content Desk</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.articlecity.com" target="_blank">Article City</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.articledashboard.com" target="_blank">Article Dashboard</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.articlesbase.com/" target="_blank">Articlesbase</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.ideamarketers.com" target="_blank">Idea Marketers</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>Max 14,000 characters INCLUDING BIO.</td>
</tr>
<tr>
<td><a href="http://www.articlealley.com" target="_blank">Article Alley</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>Interprets Word’s paragraph markers as HTML Paragraph tags so if you have both those and actual Paragraph tags, you’ll get double paragraph spacing. Same network as A1 articles. Articles are automatically published there.</td>
</tr>
<tr class="altrow">
<td><a href="http://www.excellentguide.com/article/" target="_blank">Excellent Guide</a></td>
<td align="center">?</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.valuablecontent.com" target="_blank">Valuable Content</a></td>
<td align="center">Y</td>
<td align="center">N – uses WYSIWYG</td>
<td>Do NOT change ‘Start Date’, ‘End Date’, or ‘Article Type’. Do NOT select ‘Don’t Auto Format’ under ‘Headline Summary’.</td>
</tr>
<tr class="altrow">
<td><a href="http://www.ezau.com" target="_blank">Home Business Webmaster Tips</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.articleonramp.com/" target="_blank">Article OnRamp</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://infopool.webverve.com/" target="_blank">InfoPool</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td><strong>Article Title:</strong> Title length must be between 4 to 100 characters. Your title must be relevant to your article and may not contain contact information, your name, business name, and any website name or otherwise. Article title must not be stuff with keywords. Titles must NOT be written in all CAPS. The first letter of each word must be capitalized, excluding common words (optional) like ‘the, and, are’ unless it is the first word of your title.</p>
<p><strong>Article Summary:</strong> Article summery is a required field and must have minimum 20 characters and maximum 150 characters. Article summery should be relevant to your article.</p>
<p><strong>Article Body:</strong> Articles must be 350 words minimum not including the summary or author’s bio. DO NOT include any HTML tag or hyperlink in the body of your article. Article submitted with hyperlink in the body will be rejected immediately (use about author box to display hyperlinks). We strongly recommend that you copy and paste articles from a basic text editor like notepad.</p>
<p><strong>About Author:</strong> Up to 300 characters or roughly 40 words. Maximum two hyperlinks are allowed per “About Box” (Affiliate links are not allowed). You must include the necessary HTML tags to make any link included here active; simply placing http://www.yoursite.com in the text will not generate a live link. The About box can be used for biographical and copyright information as well as linking to relevant websites.</td>
</tr>
<tr>
<td><a href="http://www.simplysearch4it.com" target="_blank">SimplySearch4It</a></td>
<td align="center">Y</td>
<td align="center">N</td>
<td>500 – 8000 words.</td>
</tr>
<tr class="altrow">
<td><a href="http://www.isnare.com" target="_blank">I-Snare</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.certificate.net" target="_blank">Free Content</a></td>
<td align="center">Y</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.articlehub.com" target="_blank">Article Hub</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>Append bio to article end.</td>
</tr>
<tr>
<td><a href="http://www.ezinefinder.com/" target="_blank">Ezine Finder</a></td>
<td align="center">N</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://amazines.com" target="_blank">Amazines</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://reprintarticles.com" target="_blank">ReprintArticles</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.businesshighlight.org" target="_blank">Business Highlight</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.homehighlight.org" target="_blank">Home Highlight</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.linksnoop.com" target="_blank">LinkSnoop</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>350 – 1000 words including bio.</td>
</tr>
<tr>
<td><a href="http://www.click-partners.com/dashboard/" target="_blank">Click-Partners</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>No smart quotes (i.e. the fancy ones that Word sometimes creates) and don’t use HTML equivalent. Just use text quotes.</td>
</tr>
<tr class="altrow">
<td><a href="http://morganarticlearchive.com" target="_blank">Morgan Article Archive</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.xongoo.com/submit.html" target="_blank">Xongoo</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.oqey.com" target="_blank">Oqey</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://articleavenue.com" target="_blank">Article Avenue</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.websition.com" target="_blank">WebSition</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.connectionteam.com" target="_blank"> Connection Team</a></td>
<td align="center">?</td>
<td align="center">N</td>
<td>Just list url of the page where your article appears on your website.</td>
</tr>
<tr class="altrow">
<td><a href="http://www.articleblast.com" target="_blank">Article Blast</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.businesstoolchest.com" target="_blank">Business Tool Chest</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.workathomearticles.net" target="_blank">WorkAtHomeArticles</a></td>
<td align="center">N</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.articleshaven.com" target="_blank">ArticlesHaven</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>You can only put a link that goes to a top level domain or directory. We do not allow linking to specific pages. This is to prevent link spamming and affiliate linking.</td>
</tr>
<tr class="altrow">
<td><a href="http://www.articledepot.co.uk" target="_blank">ArticleDepot</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.expertarticles.com" target="_blank">ExpertArticles</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.businessclique.com" target="_blank">Business Clique</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.articlepoint.com" target="_blank">Article Point</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.uswebpros.com" target="_blank">USWebPros</a></td>
<td align="center">N</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.howitworks.net" target="_blank">How-It-Works</a></td>
<td align="center">?</td>
<td align="center">?</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.whatsay.com" target="_blank">What Say</a></td>
<td align="center">N</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.moneymakingparents.com" target="_blank">Money Making Parents</a></td>
<td align="center">Y</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.content-articles.com" target="_blank">Content-Articles</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.livearticles.org" target="_blank">Live Articles</a></td>
<td align="center">?</td>
<td align="center">?</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.thewhir.com/find/articlecentral/suggest.asp " target="_blank">The Whir</a></td>
<td align="center">?</td>
<td align="center">?</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.marketing-seek.com/members/login.php" target="_blank">Marketing Seek</a></td>
<td align="center">?</td>
<td align="center">?</td>
<td>Can format fully or copy &amp; paste from MS Word. You must send a picture with your article.</td>
</tr>
<tr class="altrow">
<td><a href="http://www.freespiritcentre.info/index.php" target="_blank">Free Spirit</a></td>
<td align="center">?</td>
<td align="center">?</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.searchimport.com/login.php" target="_blank">SearchImport</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>Must include reprint guidelines in order for it to be considered a free reprint article.</td>
</tr>
<tr class="altrow">
<td><a href="http://www.articleworld.net" target="_blank">ArticleWorld</a></td>
<td align="center">?</td>
<td align="center">?</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.free-articles-zone.com" target="_blank">Free-Articles-Zone</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.article99.com" target="_blank">Article99</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.activeauthors.com" target="_blank">ActiveAuthors</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.articlepros.com" target="_blank">ArticlePros</a></td>
<td align="center">?</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.free-articles-zone.com" target="_blank">Free-Articles-Zone</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://theselfimprovementsite.com" target="_blank">The Self Improvement Site</a></td>
<td align="center">?</td>
<td align="center">?</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.article-content-king.com" target="_blank">Article Content King</a></td>
<td align="center">N</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.articlesphere.com" target="_blank">Article Sphere</a></td>
<td align="center">?</td>
<td align="center">?</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.goodmorningplanetearth.com/" target="_blank">Good Morning Planet Earth</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.articlestreet.com" target="_blank">Article Street</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.articlesbeyondbetter.com" target="_blank">Articles Beyond Better</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.article-treasure.com" target="_blank">Article Treasure</a></td>
<td align="center">?</td>
<td align="center">?</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.articledestination.com" target="_blank">Article Destination</a></td>
<td align="center">?</td>
<td align="center">?</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.articles4free.com" target="_blank">Articles4Free</a></td>
<td align="center">?</td>
<td align="center">?</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.articles-hub.com" target="_blank">Articles-Hub</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.articlepro.co.uk/international" target="_blank">Article Pro</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.articlextra.biz" target="_blank">ArticleXtra</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://work-at-home-business-website.com/Articles.php" target="_blank">Work At Home Business Website</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.articlebots.com" target="_blank">ArticleMS</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.alloveressays.com/" target="_blank">All Over Essays</a></td>
<td align="center">?</td>
<td align="center">N</td>
<td>1 on topic link allowed in article</td>
</tr>
<tr>
<td><a href="http://www.articles-book.com/" target="_blank">Articles Book</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://qwikezine.com/" target="_blank">Qwik Ezine</a></td>
<td align="center">?</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.goarticle.net/" target="_blank">GoArticle.net</a></td>
<td align="center">?</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.smasharticles.com/submit/article.html" target="_blank">Smash Articles</a></td>
<td align="center">Y</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.copypastearticles.com/" target="_blank">Copy &amp; Paste Articles</a></td>
<td align="center">Y</td>
<td align="center">N</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.go-see.info/articles/" target="_blank">Go-See.Info</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>Use the resource box for linking back to your site – Articles submitted will not be approved if they contain links in the body belonging to the author. Please use the resource box to link back to your site. Please limit resource box links to 3 or fewer – Articles containing more than 3 links in the resource box will not be approved. Articles must be spellchecked and proof read for grammatical errors prior to submitting – Do not submit articles filled with spelling errors and bad grammar. We do monitor article submissions and we will reject content that doesn’t meet this requirement.</td>
</tr>
<tr>
<td><a href="http://www.tntarticles.com/" target="_blank">TNT Articles</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.topicplanet.com/" target="_blank">Topic Planet</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>Quite <a href="http://www.topicplanet.com/submitguidelines.php" target="_blank">detailed guidelines</a>.</td>
</tr>
<tr>
<td><a href="http://www.myfreearticlecentral.com/" target="_blank">My Free Article Central</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>Quite <a href="http://www.myfreearticlecentral.com/TermsOfServiceForAuthors.aspx" target="_blank">detailed guidelines</a>.</td>
</tr>
<tr class="altrow">
<td><a href="http://www.livearticledirectory.com" target="_blank">Live Article Directory</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.articlepower.org" target="_blank">ArticlePower.org</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>Article Title: maximum 150 characters. Article Body: maximum of 15,000 characters or roughly 5,000 words. Author Bio: 400 characters or roughly 60 words.  We strongly recommend that authors submitting to ArticlePower.org copy and paste articles from a basic text editor like Notepad or TextEdit. Following this suggestion will ensure that paragraph breaks, line length and other basic formatting will be properly handled by our submission form. Copying and pasting content from applications like MS Word can and does result in a variety of formatting problems. The reason for this is that MS Word and similar applications use non-ASCII, sometimes invisible, characters that are copied with article content into our submission form, causing articles to appear very differently from the way they were submitted. Keeping the above in mind, it is not necessary for authors to use html tags for specifying font size or to create paragraph and line breaks. Use of HTML should be minimal and we suggest html tags only be used for creating live links to sites, services or products. Our submission process does not automatically create activated links. You must do this.</td>
</tr>
<tr class="altrow">
<td><a href="http://www.smartfindsdirectory.com" target="_blank">Smartfinds Article Directory</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>Use the resource box for linking back to your site – Articles submitted will not be approved if they contain links in the body belonging to the author. Please use the resource box to link back to your site. Please limit resource box links to 3 or fewer – Articles containing more than 3 links in the resource box will not be approved. Articles must be spellchecked and proof read for grammatical errors prior to submitting – Do not submit articles filled with spelling errors and bad grammar. We do monitor article submissions and we will reject content that doesn’t meet this requirement.</td>
</tr>
<tr>
<td><a href="http://www.worthyarticles.com/" target="_blank">Worthy Articles</a></td>
<td align="center">Y</td>
<td align="center">Y</td>
<td>No links in the article body are welcome as well. Please use the resource box to link back to your site. Articles containing more than 3 links in the resource box will not be approved.</td>
</tr>
</tbody>
</table>
<hr />
<a id="article_distribution_lists" name="article_distribution_lists"></a></p>
<h2><a id="article_distribution_lists" name="article_distribution_lists">Article Distribution Lists</a></h2>
<p>Article distribution lists serve a similar function to article submission sites – they just operate differently. Instead of visiting the site and posting your article, you simply email your article to the group, and all members automatically receive it (assuming they’re subscribed to received emails). Most article distribution groups are <a href="http://groups.yahoo.com/" target="_blank">Yahoo groups</a>.</p>
<p>This list is not ordered by popularity; it is alphabetized.</p>
<table class="noborder" border="0">
<tbody>
<tr>
<td>
<h3>TIP:</h3>
</td>
<td>
<blockquote><p>Each article distribution list / group will have its own conditions and formatting requirements, but this <a href="http://www.articlepr.com/Sample_TXT_article.shtml" target="_blank">Article Template for Article Distribution Groups</a> will be suitable for most.</p>
<p><strong>IMPORTANT:</strong> Before you can email your article to a group, you MUST:</p>
<ol>
<li>have a Yahoo Group membership (or Google, MSN, Topica, etc.)</li>
<li>be signed in to Yahoo Groups (or Google Groups, etc.)</li>
<li>be a member of the group</li>
<li>in most cases, subscribe to receive the group’s email</li>
</ol>
</blockquote>
</td>
</tr>
</tbody>
</table>
<table class="margins" border="0">
<tbody>
<tr>
<th>Site (Home)</th>
<th>Type</th>
<th>Email articles to</th>
<th>Notes</th>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/aidphelp/" target="_blank">aidphelp</a></td>
<td>Yahoo</td>
<td><a href="mailto:aidphelp@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://health.groups.yahoo.com/group/Allergy-Asthma-Info/" target="_blank">Allergy-Asthma-Info</a></td>
<td>Yahoo</td>
<td><a href="mailto:Allergy-Asthma-Info@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/allthingspondered/" target="_blank">AllThingsPondered</a></td>
<td>Yahoo</td>
<td><a href="mailto:allthingspondered@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/Announce_It_Write/" target="_blank">Announce_It_Write</a></td>
<td>Yahoo</td>
<td><a href="mailto:Announce_It_Write@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/ap-shorts/" target="_blank">AP-Shorts</a></td>
<td>Yahoo</td>
<td><a href="mailto:ap-shorts@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/article_announce" target="_blank">Article Announce Writer &amp; Publisher Exchange</a></td>
<td>Yahoo</td>
<td><a href="mailto:article_announce@yahoogroups.com">Click to email</a></td>
<td>In addition do not post more than one article per group per day. If more than one article is posted within a 24-hour period, it will be deleted without notice. Press releases may be posted to the groups only if they are formatted as a press release and follow the submission guidelines.</td>
</tr>
<tr>
<td><a href="http://www.egroups.com/group/aahome" target="_blank">Article Announce Home</a></td>
<td>Yahoo</td>
<td><a href="mailto:aahome@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.egroups.com/group/aahealth" target="_blank">Article Announce Health</a></td>
<td>Yahoo</td>
<td><a href="mailto:aahealth@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.egroups.com/group/aabusiness" target="_blank">Article Announce Business</a></td>
<td>Yahoo</td>
<td><a href="mailto:aabusiness@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.egroups.com/group/aageneral" target="_blank">Article Announce General</a></td>
<td>Yahoo</td>
<td><a href="mailto:aageneral@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.egroups.com/group/aainet" target="_blank">Article Announce Internet</a></td>
<td>Yahoo</td>
<td><a href="mailto:aainet@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/articles4you2use4promotion" target="_blank">Articles4You2Use4Promotion</a></td>
<td>Yahoo</td>
<td><a href="mailto:articles4you2use4promotion@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/article_announce_list/" target="_blank">Article_Announce_List</a></td>
<td>Yahoo</td>
<td><a href="mailto:article_announce_list@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/ArticleAnnouncer/" target="_blank">ArticleAnnouncer</a></td>
<td>Yahoo</td>
<td><a href="mailto:ArticleAnnouncer@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/articles_archives" target="_blank">Article_Archives</a></td>
<td>Yahoo</td>
<td><a href="mailto:articles_archives@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/article-distribution/" target="_blank">Article-Distribution</a></td>
<td>Yahoo</td>
<td><a href="mailto:article-distribution@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/articleexchange/" target="_blank">ArticleExchange</a></td>
<td>Yahoo</td>
<td><a href="mailto:articleexchange@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/article-free/" target="_blank">Article-Free</a></td>
<td>Yahoo</td>
<td><a href="mailto:article-free@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/article-group/" target="_blank">Article-Group</a></td>
<td>Yahoo</td>
<td><a href="mailto:article-group@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/articlesubmission" target="_blank">ArticleSubmission</a></td>
<td>Yahoo</td>
<td><a href="mailto:articlesubmission@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/articles-about-promotion-articles/" target="_blank">articles-about-promotion-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:articles-about-promotion-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/articles-concerning-google-adwords/" target="_blank">articles-concerning-google-adwords</a></td>
<td>Yahoo</td>
<td><a href="mailto:articles-concerning-google-adwords@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/articles-network/" target="_blank">Articles-Network</a></td>
<td>Yahoo</td>
<td><a href="mailto:articles-network@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/ArticlePublish" target="_blank">ArticlePublish</a></td>
<td>Yahoo</td>
<td><a href="mailto:ArticlePublish@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/ArticlePublisher" target="_blank">ArticlePublisher</a></td>
<td>Yahoo</td>
<td><a href="mailto:ArticlePublisher@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/AstroClubNewsletters/" target="_blank">AstroClubNewsletters</a></td>
<td>Yahoo</td>
<td><a href="mailto:AstroClubNewsletters@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://autos.groups.yahoo.com/group/automotive_content/" target="_blank">automotive_content</a></td>
<td>Yahoo</td>
<td><a href="mailto:automotive_content@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://launch.groups.yahoo.com/group/BachAndHandelResearchResources/" target="_blank">BachAndHandelResearchResources</a></td>
<td>Yahoo</td>
<td><a href="mailto:BachAndHandelResearchResources@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/bizeasyguide/" target="_blank">BizEzyGuide</a></td>
<td>Yahoo</td>
<td><a href="mailto:bizeasyguide@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/bookreviews-fiction/" target="_blank">bookreviews-fiction</a></td>
<td>Yahoo</td>
<td><a href="mailto:bookreviews-fiction@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/bookreviews-nonfiction/" target="_blank">bookreviews-nonfiction</a></td>
<td>Yahoo</td>
<td><a href="mailto:bookreviews-nonfiction@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/BusinessArticles/" target="_blank">BusinessArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:BusinessArticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/christian_articles/" target="_blank">Christian_Articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:christian_articles@yahoogroups.com">Click to email</a></td>
<td>Post only the preview and bio incl an email address.  Interested editors will then contact you for the entire piece.</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/christian_content_for_reprint/" target="_blank">Christian_Content_For_Reprint</a></td>
<td>Yahoo</td>
<td><a href="mailto:christian_content_for_reprint@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/computer_tips_4_reprint/" target="_blank">computer_tips_4_reprint</a></td>
<td>Yahoo</td>
<td><a href="mailto:computer_tips_4_reprint@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/content-4-the-holidays/" target="_blank">content-4-the-holidays</a></td>
<td>Yahoo</td>
<td><a href="mailto:content-4-the-holidays@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/content-about-communities/" target="_blank">content-about-communities</a></td>
<td>Yahoo</td>
<td><a href="mailto:content-about-communities@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/copywriting_help/" target="_blank">copywriting_help</a></td>
<td>Yahoo</td>
<td><a href="mailto:content-4-the-holidays@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/dating-tips-and-articles/" target="_blank">dating-tips-and-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:dating-tips-and-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://health.groups.yahoo.com/group/diabetic-articles/" target="_blank">diabetic-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:copywriting_help@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/edipity/" target="_blank">Edipity</a></td>
<td>Yahoo</td>
<td><a href="mailto:edipity@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/EditorsReview/" target="_blank">EditorsReview</a></td>
<td>Yahoo</td>
<td><a href="mailto:EditorsReview-owner@egroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/E_A_A/" target="_blank">E_A_A</a></td>
<td>Yahoo</td>
<td><a href="mailto:E_A_A@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/electronics_articleblaster/" target="_blank">electronics_articleblaster</a></td>
<td>Yahoo</td>
<td><a href="mailto:electronics_articleblaster@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/employment-hunting-tips/" target="_blank">employment-hunting-tips</a></td>
<td>Yahoo</td>
<td><a href="mailto:employment-hunting-tips@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/epub" target="_blank">ePub</a></td>
<td>Yahoo</td>
<td><a href="mailto:epub@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/ExCHANGE-board/" target="_blank">ExCHANGE-board</a></td>
<td>Yahoo</td>
<td><a href="mailto:ExCHANGE-board@yahoogroups.com">Click to email</a></td>
<td>When you subscribe, you’ll be asked to submit a bio, end-of-article blurb, by-line and a your first article to: ExCHANGE-board-owner@yahoogroups.com. Once approved, you will receive further information on how to post your articles directly to the group.</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/EzineZone" target="_blank">EzineZone</a></td>
<td>Yahoo</td>
<td><a href="mailto:EzineZone@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/family_articles/" target="_blank">family_articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:family_articles-owner@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/family-by-design-articles/" target="_blank">family-by-design-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:family-by-design-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/Filler_Content/" target="_blank">filler_content</a></td>
<td>Yahoo</td>
<td><a href="mailto:Filler_Content@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/FreeAnnouncements-Ebooks/" target="_blank">FreeAnnouncements-Ebooks</a></td>
<td>Yahoo</td>
<td><a href="mailto:FreeAnnouncements-Ebooks@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://autos.groups.yahoo.com/group/free_automotive_articles/" target="_blank">Free-automotive-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:free_automotive_articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/free_business_articles/" target="_blank">Free-business-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:free_business_articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/Free-Content" target="_blank">Free-Content</a></td>
<td>Yahoo</td>
<td><a href="mailto:Free-Content@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/freecontentarticles" target="_blank">FreeContentArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:freecontentarticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/FreeContent4WAHMS/" target="_blank">FreeContent4WAHMS</a></td>
<td>Yahoo</td>
<td><a href="mailto:FreeContent4WAHMS@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/FreeContentForWAHMS/" target="_blank">FreeContentForWAHMS</a></td>
<td>Yahoo</td>
<td><a href="mailto:FreeContentForWAHMS@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/free-dating-articles/" target="_blank">Free-dating-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:free-dating-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/Free_eContent" target="_blank">Free_eContent</a></td>
<td>Yahoo</td>
<td><a href="mailto:Free_eContent@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/freeezinearticles/" target="_blank">FreeEzineArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:freeezinearticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/free-ezine-content/" target="_blank">Free-Ezine-Content</a></td>
<td>Yahoo</td>
<td><a href="mailto:free-ezine-content@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/free_gardening_articles/" target="_blank">Free_gardening_articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:free_gardening_articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://health.groups.yahoo.com/group/free_health_articles_for_reprint/" target="_blank">Free_Health_Articles_for_Reprint</a></td>
<td>Yahoo</td>
<td><a href="mailto:free_health_articles_for_reprint@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/free_internet_articles/" target="_blank">Free_internet_articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:free_internet_articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/free_medical_business_articles/" target="_blank">free_medical_business_articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:free_medical_business_articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/free_parenting_articles/" target="_blank">free_parenting_articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:free_parenting_articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/free-pet-content/" target="_blank">Free-Pet-Content</a></td>
<td>Yahoo</td>
<td><a href="mailto:free-pet-content@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/free_political_articles/" target="_blank">free_political_articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:free_political_articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/free_real_estate_articles/" target="_blank">Free_real_estate_articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:free_real_estate_articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/free-reports-and-articles/" target="_blank">free-reports-and-articles </a></td>
<td>Yahoo</td>
<td><a href="mailto:free-reports-and-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/Free-Reprint-Articles" target="_blank">Free-Reprint-Articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:Free-Reprint-Articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/free-reprint_recipes/" target="_blank">Free-Reprint_Recipes</a></td>
<td>Yahoo</td>
<td><a href="mailto:free-reprint_recipes@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/FreeReprintables/" target="_blank">FreeReprintables</a></td>
<td>Yahoo</td>
<td><a href="mailto:FreeReprintables@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://sports.groups.yahoo.com/group/free_sports_articles/" target="_blank">Free_Sports_Articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:free_sports_articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/free_travel_articles/" target="_blank">Free_travel_articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:free_travel_articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/freE-zinecontent/" target="_blank">freE-zinecontent</a></td>
<td>Yahoo</td>
<td><a href="mailto:freE-zinecontent@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/freelance_promotion" target="_blank">Freelance_Promotion</a></td>
<td>Yahoo</td>
<td><a href="mailto:freelance_promotion@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/FreeWrites" target="_blank">FreeWrites</a></td>
<td>Yahoo</td>
<td><a href="mailto:FreeWrites@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/freezinecontent" target="_blank">freezinecontent</a></td>
<td>Yahoo</td>
<td><a href="mailto:freezinecontent@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/GH-ContentAnnounce/" target="_blank">GH-ContentAnnounce</a></td>
<td>Yahoo</td>
<td><a href="mailto:GH-ContentAnnounce@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://health.groups.yahoo.com/group/health-and-wellness-articles/" target="_blank">Health-And-Wellness-Articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:health-and-wellness-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://health.groups.yahoo.com/group/health-articles/" target="_blank">Health-Articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:health-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/Helping-Our-Kids-Succeed/" target="_blank">Helping-Our-Kids-Succeed</a></td>
<td>Yahoo</td>
<td><a href="mailto:Helping-Our-Kids-Succeed@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/Historical-Reprint-Content/" target="_blank">Historical-Reprint-Content</a></td>
<td>Yahoo</td>
<td><a href="mailto:Historical-Reprint-Content@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/holidayarticles/" target="_blank">HolidayArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:holidayarticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/home_and_garden_content/" target="_blank">Home_and_garden_content</a></td>
<td>Yahoo</td>
<td><a href="mailto:home_and_garden_content@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/Home-Improvement-Articles/" target="_blank">Home-Improvement-Articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:Home-Improvement-Articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/humor-articles-and-jokes-4-reprint/" target="_blank">humor-articles-and-jokes-4-reprint</a></td>
<td>Yahoo</td>
<td><a href="mailto:humor-articles-and-jokes-4-reprint@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/internet_marketing_articleblaster/" target="_blank">internet_marketing_articleblaster</a></td>
<td>Yahoo</td>
<td><a href="mailto:internet_marketing_articleblaster@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/I_Need_Content" target="_blank">I_Need_Content</a></td>
<td>Yahoo</td>
<td><a href="mailto:I_Need_Content@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/inspiration-articles/" target="_blank">Inspiration-Articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:inspiration-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/jewelry-reprint-articles/" target="_blank">jewelry-reprint-articles </a></td>
<td>Yahoo</td>
<td><a href="mailto:jewelry-reprint-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/justarticles/" target="_blank">JustArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:justarticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/MarketingArticles/" target="_blank">MarketingArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:MarketingArticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/mba-crm-erp-cio-pm-it-free-articles/" target="_blank">mba-crm-erp-cio-pm-it-free-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:mba-crm-erp-cio-pm-it-free-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://health.groups.yahoo.com/group/med-content/" target="_blank">med-content</a></td>
<td>Yahoo</td>
<td><a href="mailto:med-content@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/Nature-Reprints/" target="_blank">Nature-Reprints</a></td>
<td>Yahoo</td>
<td><a href="mailto:Nature-Reprints@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/netwrite-publish-announce" target="_blank">netwrite-publish-announce</a></td>
<td>Yahoo</td>
<td><a href="mailto:netwrite-publish-announce@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/OnlyWritingArticles/" target="_blank">OnlyWritingArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:OnlyWritingArticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/parenting-articles/" target="_blank">Parenting-Articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:parenting-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/pnewsletterfreearticles/" target="_blank">PNewsletterFreeArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:pnewsletterfreearticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/Political-Thoughts/" target="_blank">Political-Thoughts</a></td>
<td>Yahoo</td>
<td><a href="mailto:Political-Thoughts@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/ppcse-reprint-articles/" target="_blank">ppcse-reprint-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:ppcse-reprint-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/PromoteYourArticle" target="_blank">PromoteYourArticle</a></td>
<td>Yahoo</td>
<td><a href="mailto:PromoteYourArticle@yahoogroups.com">Click to email</a></td>
<td>You may submit only one article per day. You must be the author of any Article that you post to this list.</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/publishyourarticle/" target="_blank">PublishYourArticle</a></td>
<td>Yahoo</td>
<td><a href="mailto:publishyourarticle@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/publisher_network" target="_blank">Publisher_Network</a></td>
<td>Yahoo</td>
<td><a href="mailto:publisher_network@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/pyabusiness/" target="_blank">pyabusiness</a></td>
<td>Yahoo</td>
<td><a href="mailto:pyabusiness@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/pyahealth/" target="_blank">pyahealth</a></td>
<td>Yahoo</td>
<td><a href="mailto:pyahealth@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/QC_Reprint_Articles" target="_blank">QC_Reprint_Articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:QC_Reprint_Articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/ReadMyArticles/" target="_blank">ReadMyArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:ReadMyArticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://finance.groups.yahoo.com/group/realty-web-content/" target="_blank">realty-web-content</a></td>
<td>Yahoo</td>
<td><a href="mailto:realty-web-content@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://tv.groups.yahoo.com/group/realworld-advertising-articles/" target="_blank">realworld-advertising-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:realworld-advertising-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/Relationship-Advice-Content/" target="_blank">Relationship-Advice-Content</a></td>
<td>Yahoo</td>
<td><a href="mailto:Relationship-Advice-Content@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/ReprintArticles/" target="_blank">ReprintArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:ReprintArticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/ReprintArticles-Paradise" target="_blank">ReprintArticles-Paradise</a></td>
<td>Yahoo</td>
<td><a href="mailto:ReprintArticles-Paradise@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/reprintedarticles/" target="_blank">ReprintedArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:reprintedarticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://health.groups.yahoo.com/group/SelfCareArticles/" target="_blank">SelfCareArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:SelfCareArticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/self-improvement-reprint-articles/" target="_blank">Self-Improvement-Reprint-Articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:self-improvement-reprint-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/SpiderSuccess/" target="_blank">SpiderSuccess</a></td>
<td>Yahoo</td>
<td><a href="mailto:SpiderSuccess@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/spirituality_article_publisher/" target="_blank">spirituality_article_publisher</a></td>
<td>Yahoo</td>
<td><a href="mailto:spirituality_article_publisher@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://sports.groups.yahoo.com/group/sports-health-medicine-articles/" target="_blank">sports-health-medicine-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:sports-health-medicine-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://finance.groups.yahoo.com/group/stormpay_articles/" target="_blank">stormpay_articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:stormpay_articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/submityourarticle/" target="_blank">SubmitYourArticle</a></td>
<td>Yahoo</td>
<td><a href="mailto:submityourarticle@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/The-Article-Depot/" target="_blank">The-Article-Depot</a></td>
<td>Yahoo</td>
<td><a href="mailto:The-Article-Depot@yahoogroups.com">Click to email</a></td>
<td>You may post one (1) article or report per day (until further notice).</td>
</tr>
<tr class="altrow">
<td><a href="http://health.groups.yahoo.com/group/the-business-of-medicine/" target="_blank">the-business-of-medicine</a></td>
<td>Yahoo</td>
<td><a href="mailto:the-business-of-medicine@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/TheWriteArticles/" target="_blank">TheWriteArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:TheWriteArticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/usemyarticles/" target="_blank">UseMyArticles</a></td>
<td>Yahoo</td>
<td><a href="mailto:usemyarticles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://movies.groups.yahoo.com/group/video-production-articles/" target="_blank">video-production-articles</a></td>
<td>Yahoo</td>
<td><a href="mailto:video-production-articles@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/webmasters-article-corner/" target="_blank">Webmaster-article-corner</a></td>
<td>Yahoo</td>
<td><a href="mailto:webmasters-article-corner@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/WriteAnnounce" target="_blank">WriteAnnounce</a></td>
<td>Yahoo</td>
<td><a href="mailto:WriteAnnounce@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.yahoo.com/group/WriteQualityContent/" target="_blank">WriteQualityContent</a></td>
<td>Yahoo</td>
<td><a href="mailto:WriteQualityContent@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.yahoo.com/group/writerscontent/" target="_blank">WritersContent</a></td>
<td>Yahoo</td>
<td><a href="mailto:writerscontent@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups-beta.google.com/group/1st-article-group/about" target="_blank">1st-Article-Group</a></td>
<td>Google</td>
<td><a href="mailto:1st-article-group@googlegroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups-beta.google.com/group/article/about" target="_blank">Article</a></td>
<td>Google</td>
<td><a href="mailto:article@googlegroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups-beta.google.com/group/Article-Distribution/about" target="_blank">Article-Distribution</a></td>
<td>Google</td>
<td><a href="mailto:WriteQualityContent@yahoogroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups-beta.google.com/group/freecontent/about" target="_blank">Content Discussion Group / FreeContent</a></td>
<td>Google</td>
<td><a href="mailto:freecontent@googlegroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups-beta.google.com/group/Free-Content/about" target="_blank">Free-Content</a></td>
<td>Google</td>
<td><a href="mailto:Free-Content@googlegroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups-beta.google.com/group/Free-Online-Reprint-Articles" target="_blank">Free Online Reprint Articles</a></td>
<td>Google</td>
<td><a href="mailto:Free-Online-Reprint-Articles@googlegroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups-beta.google.com/group/Free-Reprint-Articles/about" target="_blank">Free-Reprint-Articles</a></td>
<td>Google</td>
<td><a href="mailto:Free-Reprint-Articles@googlegroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups-beta.google.com/group/Quality_Content/about" target="_blank">Quality Content</a></td>
<td>Google</td>
<td><a href="mailto:Quality_Content@googlegroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups-beta.google.com/group/Real-Estate-Information/about" target="_blank">Real Estate Information</a></td>
<td>Google</td>
<td><a href="mailto:Real-Estate-Information@googlegroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups-beta.google.com/group/Relaxation/about" target="_blank">Relaxation</a></td>
<td>Google</td>
<td><a href="mailto:Relaxation@googlegroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups-beta.google.com/group/articles2reprint/about" target="_blank">Reprint Articles for Ezines and Websites </a></td>
<td>Google</td>
<td><a href="mailto:articles2reprint@googlegroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.msn.com/free-reprint-articles" target="_blank">Free-Reprint-Articles</a></td>
<td>MSN</td>
<td><a href="mailto:free-reprint-articles@groups.msn.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://groups.msn.com/Freewebsitecontentgroup" target="_blank">Free website content</a></td>
<td>MSN</td>
<td><a href="mailto:Freewebsitecontentgroup@groups.msn.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://groups.msn.com/TheEZineArticleExchange/yourwebpage.msnw" target="_blank">The E-Zine Article Exchange</a></td>
<td>MSN</td>
<td><a href="mailto:TheEZineArticleExchange@groups.msn.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://www.smartgroups.com/groups/articles-only" target="_blank">Articles Only</a></td>
<td>SmartGroups</td>
<td><a href="mailto:Freewebsitecontentgroup@groups.msn.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://www.smartgroups.com/groups/free-reprint-articles" target="_blank">Free Reprint Articles</a></td>
<td>SmartGroups</td>
<td><a href="mailto:free-reprint-articles@smartgroups.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://lists.topica.com/lists/ArticleReview/" target="_blank">ArticleReview</a></td>
<td>Topica</td>
<td><a href="mailto:ArticleReview@topica.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://lists.topica.com/lists/clickforcontent/" target="_blank">Click for Content</a></td>
<td>Topica</td>
<td><a href="mailto:clickforcontent@topica.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://lists.topica.com/lists/free_articles/" target="_blank">Free_Articles</a></td>
<td>Topica</td>
<td><a href="mailto:free_articles@topica.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://lists.topica.com/lists/FreeEzineContent" target="_blank">FreeEzineContent</a></td>
<td>Topica</td>
<td><a href="mailto:FreeEzineContent@topica.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://lists.topica.com/lists/Free-Reprint_Articles/" target="_blank">Free-Reprint_Articles</a></td>
<td>Topica</td>
<td><a href="mailto:Free-Reprint_Articles@topica.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr>
<td><a href="http://lists.topica.com/lists/New_PhantomArticles" target="_blank">New_PhantomArticles</a></td>
<td>Topica</td>
<td><a href="mailto:New_PhantomArticles@topica.com">Click to email</a></td>
<td>NA</td>
</tr>
<tr class="altrow">
<td><a href="http://lists.topica.com/lists/reprint-articles/" target="_blank">Reprint-Articles</a></td>
<td>Topica</td>
<td><a href="mailto:reprint-articles@topica.com">Click to email</a></td>
<td>NA</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td><strong>Article PR</strong> – More links, less time.</p>
<p>For comprehensive Search Engine Marketing, contact <a href="http://www.alkemi.com.au">Alkemi – Search Engine Marketing (SEM) Consultants and Internet Marketing Agency</a></td>
</tr>
</tbody>
</table>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/article-submission-article-distribution-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Center Chief Mike Manos Quits Digital Realty Trust</title>
		<link>http://blog.theexpertseo.com/data-center-chief-mike-manos-quits-digital-realty-trust/</link>
		<comments>http://blog.theexpertseo.com/data-center-chief-mike-manos-quits-digital-realty-trust/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 11:16:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Interent Marketing]]></category>
		<category><![CDATA[TopNews]]></category>
		<category><![CDATA[Industry News]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=193</guid>
		<description><![CDATA[Mike Manos, an influential figure in data center design and construction, has resigned from wholesale data center provider Digital Realty Trust after less than a year at the company, Digital Realty said on Friday.
Digital Realty designs, builds and manages large data centers for third parties, including collocation providers and hosting companies. It is one of [...]]]></description>
			<content:encoded><![CDATA[<p>Mike Manos, an influential figure in data center design and construction, has resigned from wholesale data center provider Digital Realty Trust after less than a year at the company, Digital Realty said on Friday.</p>
<p>Digital Realty designs, builds and manages large data centers for third parties, including collocation providers and hosting companies. It is one of the biggest providers of such services worldwide.</p>
<p>The company hired Manos last April as senior vice president of technical services, where he oversaw design, construction and technical operations for Digital Realty&#8217;s data centers worldwide. Before that, he ran Microsoft&#8217;s Data Center Services division.</p>
<p>Manos said via e-mail that he planned to announce his next move on Sunday. &#8220;The next chapter of my career brings me back in closer alignment with what I did for Microsoft,&#8221; he wrote.</p>
<p>&#8220;I remain firm in my endorsement of Digital Realty Trust and hope that my involvement has helped to move the company forward,&#8221; he was quoted as saying in a statement from Digital Realty.</p>
<p>Digital Realty said, &#8220;We understand that this was a difficult, personal decision for him and we wish him the very best in his future endeavors.&#8221;</p>
<p>Manos has been a champion of containerized data centers like those being used on a large scale at Microsoft&#8217;s new data center in Chicago. Containerized data centers pack servers and other compute gear into shipping containers, and they can help companies boost energy efficiency or delay the need to construct new data centers.</p>
<p>Manos is also a frequent speaker at industry conferences on energy efficiency and other data center topics. He is also a proponent of building data centers in a more modular, standardized way, where mechanical and electrical components are designed and can then be reused in a &#8220;cookie-cutter&#8221; fashion.</p>
<p>Digital Realty said Dave Caron, senior vice president for portfolio management, will oversee technical operations, and Jim Smith, chief technology officer, will oversee design and construction on an interim basis, both effective Feb. 1.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/data-center-chief-mike-manos-quits-digital-realty-trust/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Amazon Must Now Focus on E-Book Sales</title>
		<link>http://blog.theexpertseo.com/why-amazon-must-now-focus-on-e-book-sales/</link>
		<comments>http://blog.theexpertseo.com/why-amazon-must-now-focus-on-e-book-sales/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 11:13:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Interent Marketing]]></category>
		<category><![CDATA[TopNews]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[eBooks]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=190</guid>
		<description><![CDATA[If Amazon stakes its future on Kindle hardware instead of cross-platform e-book sales, it&#8217;s in for a world of hurt from Apple&#8217;s iPad.
Apple&#8217;s upcoming iPad includes the iBooks app, which combines e-book reader software with an iTunes-like service for selling books. I was somewhat surprised by iBooks. I had just assumed that Apple was going [...]]]></description>
			<content:encoded><![CDATA[<h2>If Amazon stakes its future on Kindle hardware instead of cross-platform e-book sales, it&#8217;s in for a world of hurt from Apple&#8217;s iPad.</h2>
<p>Apple&#8217;s upcoming iPad includes the iBooks app, which combines e-book reader software with an iTunes-like service for selling books. I was somewhat surprised by iBooks. I had just assumed that Apple was going to let existing e-book distributors like Amazon.com and FictionWise install apps on the iPad and sell books that way. But I should not have been surprised. Why wouldn&#8217;t Apple want to have its own e-book store?</p>
<p>The iPad is likely to suck the oxygen from e-book hardware sales. Given a choice between an e-book reader and a device that does e-books and dozens of other things, consumers will likely choose the more useful device.</p>
<p>Novelist Charles Stross thinks the Kindle is in trouble.</p>
<p>&#8220;And this thing is going to slaughter the Kindle and most of the other ebook readers on the market, even without Apple coming up with a better business model for the publishers. With Penguin, Hachette, Macmillan, Simon and Schuster and HarperCollins on board, they&#8217;ve just about aced the main US trade publishers — remains to be seen how smaller outfits plug into the platform, but at this point Amazon have a struggle on their hands. As iBook reads ePub format files it may be possible to add free content to it. Maybe.&#8221;</p>
<p>Whether this is a win or loss for Amazon depends on how Amazon plays it from here out. The Amazon Kindle software already runs on the iPhone, and it will therefore run on the iPad. With the introduction of the iPad, the market for e-books is going to explode.</p>
<p>If Amazon stakes its future on the Kindle hardware, it&#8217;s in for a world of hurt. But if it builds a business on cross-platform e-book sales, then Amazon will prosper.</p>
<p>Not everyone agrees that the iPad will be fatal to the Kindle. Brad Stone of the New York Times argues that the iPad is not a Kindle-killer:</p>
<p>&#8220;The Kindle is for book lovers, and the iPad is not.</p>
<p>&#8220;Sure, the Kindle’s potential market may have shrunk today, since the two-books-a-year folks will now opt for the more versatile iPad.</p>
<p>&#8220;But the Kindle (and other devices with E Ink screens) will continue to be the best device for lovers of long-form reading, period. (And they do love it; check the Kindle forums for the passion of Kindle owners.) The iPad’s backlit screen, higher price and more limited battery all make it a poorer choice for curling up with a novel.</p>
<p>&#8220;Also, there’s the distraction factor. When you read a book, you just don’t want to have e-mail, Twitter and the ESPN Web site beckoning from the browser. The absence of those services on the Kindle — sure, it’s also a flaw — actually make it better for focused leisure reading.&#8221;</p>
<p>I&#8217;m a book-lover, and I disagree with Stone. I don&#8217;t think there are enough people who agree with him to sustain e-book reader sales.</p>
<p>And there&#8217;s one way the iPad is great for writers, readers and publishers: The iBooks store will provide an e-book alternative to Amazon&#8217;s growing monopoly.</p>
<p>As an added bonus feature, iBooks supports the ePub standard for e-books. Macworld&#8217;s Dan Frakes explains the significance of ePub support:</p>
<p>&#8220;Adopted by the International Digital Publishing Forum (IDPF) as an open-standards-based format for digital books, ePub allows publishers to create books in a single format for distribution to various e-book resellers and for use on any device that supports ePub. With more and more publishers and hardware vendors adopting the ePub standard, this news means it will be easier for publishers—big and small—to make their e-books available for the iPad and other e-readers.</p>
<p>&#8220;(Questions still remain, however: Will Apple apply FairPlay copy protection to books you purchase through the iBookstore? Will you be able to import unprotected ePub documents into the iBooks app? We’ll be working on the answers to these questions going forward.)&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/why-amazon-must-now-focus-on-e-book-sales/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google to End Support for IE6</title>
		<link>http://blog.theexpertseo.com/google-to-end-support-for-ie6/</link>
		<comments>http://blog.theexpertseo.com/google-to-end-support-for-ie6/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 11:11:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[TopNews]]></category>
		<category><![CDATA[IE 6]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/google-to-end-support-for-ie6/</guid>
		<description><![CDATA[Google will phase out support for Microsoft&#8217;s Internet Explorer 6 Web browser starting in March, the company said Friday.
&#8220;Many other companies have already stopped supporting older browsers like Internet Explorer 6.0 as well as browsers that are not supported by their own manufacturers. We&#8217;re also going to begin phasing out our support, starting with Google [...]]]></description>
			<content:encoded><![CDATA[<p>Google will phase out support for Microsoft&#8217;s Internet Explorer 6 Web browser starting in March, the company said Friday.</p>
<p>&#8220;Many other companies have already stopped supporting older browsers like Internet Explorer 6.0 as well as browsers that are not supported by their own manufacturers. We&#8217;re also going to begin phasing out our support, starting with Google Docs and Google Sites,&#8221; Rajen Sheth, Google Apps senior product manager, wrote in a blog post Friday.</p>
<p>The announcement comes more than two weeks after Google reported that its servers had been the target of attacks originating in China. Those attacks targeted a vulnerability in IE 6, for which Microsoft has since issued a fix.</p>
<p>Support for IE6 in Google Docs and Google Sites will end March 1, Sheth said in the post. At that point, IE6 users who try to access Docs or Sites may find that &#8220;key functionality&#8221; won&#8217;t work properly, he said.</p>
<p>Sheth suggested that customers upgrade to Internet Explorer 7, Mozilla Firefox 3.0, Google Chrome 4.0 or Safari 3.0, or more recent versions of those browsers.</p>
<p>According to StatCounter, IE6 has 18 percent market share among browsers.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/google-to-end-support-for-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Defines an E-Reader?</title>
		<link>http://blog.theexpertseo.com/what-defines-an-e-reader/</link>
		<comments>http://blog.theexpertseo.com/what-defines-an-e-reader/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 14:07:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Interent Marketing]]></category>
		<category><![CDATA[TopNews]]></category>
		<category><![CDATA[Industry News]]></category>
		<category><![CDATA[Kindle]]></category>
		<category><![CDATA[Technology News]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=186</guid>
		<description><![CDATA[
Until recently, pretty much all e-readers used E-Ink displays like the ones in Amazon&#8217;s Kindle and Barnes &#38; Noble&#8217;s Nook. However, at CES we&#8217;ve seen a number of concept designs and prototypes-from both Asian contract manufacturers and established companies-that are billed as &#8220;e-readers&#8221;, but use LCD screens like the ones in typical notebooks.

MSI&#8217;s dual-screen e-reader/netbook
Are [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>Until recently, pretty much all e-readers used E-Ink displays like the ones in Amazon&#8217;s Kindle and Barnes &amp; Noble&#8217;s Nook. However, at CES we&#8217;ve seen a number of concept designs and prototypes-from both Asian contract manufacturers and established companies-that are billed as &#8220;e-readers&#8221;, but use LCD screens like the ones in typical notebooks.</p>
<p><span><img src="http://images.pcworld.com/news/graphics/186286-msi_dual_screen_netbook1_350.jpg" alt="MSI's dual-screen e-reader/netbook." /></span></p>
<div>MSI&#8217;s dual-screen e-reader/netbook</div>
<p>Are these devices truly e-readers? The whole point of electronic paper-based e-readers is that the display, which doesn&#8217;t use a backlight, mimics the look of physical paper and is easier on the eyes than a bright, backlit LCD. I saw many LCD &#8220;e-readers&#8221; at the show, but none had those same qualities.</p>
<p>Tech companies are as susceptible to trends as teenage girls and I&#8217;d argue that many of the companies making LCD-based e-readers are simply jumping on the craze for these devices. Many of these so-called e-readers are no more than tablet PCs or MID (mobile Internet devices), capable of displaying e-books with e-reader software but not really optimized for that purpose. It&#8217;s no different, really, than a mobile phone running Amazon&#8217;s Kindle app, or any other e-reader software for that matter. The only difference between the two categories is the size of the screen.</p>
<p>Much of the hype is just that. After all, this is CES-the place where companies go to put forth ideas and gauge the reception from the media and potential customers.</p>
<p>Which brings me around to the MSI 10-inch dual-screen e-reader concept. The clam-shell prototype device was surprisingly lightweight in my hands, and had a touchscreen that made it easy to navigate around the Windows 7 starter operating system. The screens responded to being reoriented from the vertical position to horizontal; in horizontal mode, the unit has a virtual keyboard with haptic feedback. The prototype is intriguing, to be sure, but, MSI has no plans to bring it to market, and according to a product manager, the product won&#8217;t be manufactured until at least 2011. Ditto for the company&#8217;s other concept display, a half-inch-thick (give or take) tablet &#8220;e-reader&#8221; with touchscreen, running Google Android. Both devices ran e-reader software, had LCD screens, and used full-featured operating systems. They were capable of far more than many traditional e-readers, but will they be optimal if what you really want is a device primarily to read novels on your commute?</p>
<p><span><img src="http://images.pcworld.com/news/graphics/186455-entourageedgetn_original.jpg" alt="Entourage eDge e-reader textbook" /></span></p>
<div>Entourage eDge e-reader textbook</div>
<p>Other e-readers, like the Entourage eDge and the Spring Designs Alex Reader, also include multi-purpose LCD screens. But in addition, they have E-Ink displays of equal or greater size that the manufacturers intend for use as the primary reading display.<span><img src="http://images.pcworld.com/news/graphics/186452-alexreadertn_original.jpg" alt="Spring Designs Alex Reader" /></span></p>
<div>Spring Designs Alex Reader</div>
<p>While many of the tablet/MID devices introduced at CES look promising, none appear ready to replace electronic paper for long-form reading. When the sun set in Vegas, they&#8217;re still just small PCs that let you access electronic books, along with doing a whole lot of other stuff.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/what-defines-an-e-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Apologizes to Chinese Authors for Book Scanning</title>
		<link>http://blog.theexpertseo.com/google-apologizes-to-chinese-authors-for-book-scanning/</link>
		<comments>http://blog.theexpertseo.com/google-apologizes-to-chinese-authors-for-book-scanning/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 14:04:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Interent Marketing]]></category>
		<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[TopNews]]></category>
		<category><![CDATA[Book Scanning]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=184</guid>
		<description><![CDATA[Google has apologized to a Chinese authors&#8217; group over its scanning of books by local writers into an online search system, moving to defuse copyright concerns around the project in China.
The Chinese Writers Association posted a copy of the Google statement on its Web site on Sunday. On the same day Erik Hartmann, an Asia-Pacific [...]]]></description>
			<content:encoded><![CDATA[<p>Google has apologized to a Chinese authors&#8217; group over its scanning of books by local writers into an online search system, moving to defuse copyright concerns around the project in China.</p>
<p>The Chinese Writers Association posted a copy of the Google statement on its Web site on Sunday. On the same day Erik Hartmann, an Asia-Pacific representative of Google Books, delivered the apology in a news program aired by China&#8217;s state broadcaster.</p>
<p>China is one of several countries, including the U.S. and France, where Google&#8217;s digital library program has faced legal challenges. The apology comes after the Chinese group demanded that Google compensate local authors whose works the U.S. search giant scanned without their approval.</p>
<p>Google is scanning hundreds of thousands of books, often without prior permission from their rights holders, so they can be searched and previewed on the Google Books service.</p>
<p>Google acknowledged in the statement that it had scanned books by Chinese writers and said the company would no longer do so without local authors&#8217; permission. It also said it hopes to reach a general agreement over resolving the tensions by March and to sign a final agreement in the second quarter.</p>
<p>&#8220;Due to different starting notions and different understandings of the copyright law systems in China and the U.S., our behavior has caused discontent among Chinese writers,&#8221; the statement said. &#8220;Our communication with Chinese authors has not been good enough. Google is willing to apologize to Chinese authors for this behavior.&#8221;</p>
<p>Google has held talks with a local copyright protection group over the book service. One Chinese author, Shanghai-based Mian Mian, has brought a copyright infringement lawsuit against Google for scanning her novel Acid Lover and showing portions of it online.</p>
<p>A Google spokeswoman said Google Books complies with U.S. and Chinese law and that the company only shows snippets of copyright books for which it does not have permission from rights holders. Authors and publishers can choose to exclude their works from the service, she said.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/google-apologizes-to-chinese-authors-for-book-scanning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Outages Damage Cloud Credibility</title>
		<link>http://blog.theexpertseo.com/google-outages-damage-cloud-credibility/</link>
		<comments>http://blog.theexpertseo.com/google-outages-damage-cloud-credibility/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 12:10:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[TopNews]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=177</guid>
		<description><![CDATA[Gmail was out this morning&#8230;again. The outage affected only a small percentage of Gmail users, but in the wake of Tuesday&#8217;s Google News outage the lack of reliability from Google isn&#8217;t helping justify the business case for embracing the cloud.
The cloud is all the rage. Vendors of all shapes and sizes are in a race [...]]]></description>
			<content:encoded><![CDATA[<p>Gmail was out this morning&#8230;again. The outage affected only a small percentage of Gmail users, but in the wake of Tuesday&#8217;s Google News outage the lack of reliability from Google isn&#8217;t helping justify the business case for embracing the cloud.</p>
<p>The cloud is all the rage. Vendors of all shapes and sizes are in a race to move as many products and services as possible to the cloud &#8211; providing managed services and software-as-a-service rather than traditional, locally-installed, software applications.</p>
<p>There are many major players investing in moving customers to the cloud. Amazon has a cloud computing offering and recently bolstered it with a more secure, segregated private cloud service. Microsoft provides hosted online productivity services and recently rolled out the technical preview of Office Web Apps, delivering Word, Excel, PowerPoint, and OneNote from the cloud.</p>
<p>Google is arguably the primary champion of cloud computing. The Web is what Google does. Google has a virtually endless list of products and services that are all delivered via the Web from the cloud.</p>
<p>Google is not content with dominating Web search or search engine advertising. It has an ongoing crusade to deliver business productivity from the Web. Google is taking on Microsoft head-to-head across a range of markets in an effort to wrest control from the desktop and move the computing experience to the Web.</p>
<p>That crusade has had relative success. Many users and businesses have found that Google Docs can fill their office productivity needs. Gmail can fulfill their e-mail needs. Google Calendar provides scheduling. Google Talk delivers instant messaging. Basically, Google has enough tools and services to fulfill virtually all of the productivity and communications needs for an organization&#8230;from the Web.</p>
<p>The problem is that Google has experienced repeated issues with service outages. Here are just a few of the headline-making outages:</p>
<p>·         September 24, 2009: Gmail outage</p>
<p>·         September 22, 2009: Google News outage</p>
<p>·         September 1, 2009: Gmail outage</p>
<p>·         May 14, 2009: Google network outage</p>
<p>·         May 18, 2009: Google News outage</p>
<p>·         March 9, 2009: Gmail outage</p>
<p>·         August 7, 2008: Gmail and Google Apps outage</p>
<p>These repeated outages damage the credibility of the cloud. Enterprises that are considering the pros and cons of moving office productivity or communications to the cloud have reason to be concerned when the poster child of cloud computing can&#8217;t provide reliable availability.</p>
<p>The cloud offers many potential advantages for customers, but one of the biggest factors driving apprehension and impeding adoption is availability. Customers are reluctant to offload productivity and communication to the cloud if the possibility exists for the cloud to disappear. Productivity and communication are mission-critical aspects for businesses and reliable availability is not negotiable.</p>
<p>David Coursey summed it up nicely, stating &#8220;Rather than adding features that add only questionable value to our lives, such as Sidewiki and Fast Flip news, maybe Google needs to stop, take a deep breath, and focus on quality and reliability for products many of us use every day? &#8221;</p>
<p>Google can help improve the reputation of the cloud and further its own agenda to make desktop applications obsolete and move everything to the Web by ensuring that the products and services it provides are as reliable as they are functional.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/google-outages-damage-cloud-credibility/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Wants You to Be Able to Leave if You Want</title>
		<link>http://blog.theexpertseo.com/google-wants-you-to-be-able-to-leave-if-you-want/</link>
		<comments>http://blog.theexpertseo.com/google-wants-you-to-be-able-to-leave-if-you-want/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 15:58:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Interent Marketing]]></category>
		<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[TopNews]]></category>
		<category><![CDATA[data liberation front]]></category>
		<category><![CDATA[dataliberation.org]]></category>
		<category><![CDATA[google products]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=169</guid>
		<description><![CDATA[Data portability is an important issue for users and businesses alike. In this age of cloud computing, where so many web users have valuable data hosted by web services, we can sometimes find ourselves vulnerable to the will and occurrences of these services. Let&#8217;s say for example, Twitter is one of the key components to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Data portability is <strong>an important issue for users and businesses alike</strong>. In this age of cloud computing, where so many web users have valuable data hosted by web services, we can sometimes find ourselves vulnerable to the will and occurrences of these services. Let&#8217;s say for example, Twitter is one of the key components to your marketing strategy, and one of your main sources of traffic. When Twitter goes down, as it frequently does, this can present quite a problem. <span style="color: #ff0000;"><strong>Ever wished you could access your tweets when Twitter was down? </strong></span><strong></strong></p>
<p style="text-align: justify;">On the subject of Twitter, the company announced some changes to its terms of service late last week. They tried to emphasize that users &#8220;own their tweets.&#8221; But do users really own them if they cannot access them because Twitter is not working? What if you could export your Tweets into Facebook, or into MySpace? It&#8217;s not that one service is better than the other. It&#8217;s about simply having the freedom to take your data wherever you want.</p>
<p style="text-align: justify;">Google realizes the importance of this concept, which is why some members of the company&#8217;s team have gotten together and formed the Data Liberation Front, a group that is dedicated to making Google&#8217;s products easier to get data in and out of. The group has also launched a website at <a href="http://www.dataliberation.org/">DataLiberation.org</a>, where users of Google products can find information about how to import and export data.</p>
<p style="text-align: justify;">&#8220;Many web services make it difficult to leave their services &#8211; you have to pay them for exporting your data, or jump through all sorts of technical hoops &#8212; for example, exporting your photos one by one, versus all at once,&#8221; <a href="http://googlepublicpolicy.blogspot.com/2009/09/introducing-dataliberationorg-liberate.html">says Brian Fitzpatrick</a>, Data Liberation engineering manager. &#8220;We believe that users &#8211; not products &#8211; own their data, and should be able to quickly and easily take that data out of any product without a hassle. We&#8217;d rather have loyal users who use Google products because they&#8217;re innovative &#8211; not because they lock users in.&#8221;</p>
<p style="text-align: justify;"><a href="http://googlepublicpolicy.blogspot.com/2009/09/introducing-dataliberationorg-liberate.html"><img title="Data Liberation Front" src="http://images.ientrymail.com/webpronews/article_pics/data-liberation.jpg" alt="Data Liberation Front" /></a> The group&#8217;s mission statement goes:</p>
<p style="text-align: justify;"><em>Users own the data they store in any of Google&#8217;s products. Our team&#8217;s goal is to give users greater control by making it easier for them to move data in and out.</em></p>
<p style="text-align: justify;">&#8220;<span style="font-size: 100%;">This principle not only applies to individual users, but also to businesses, schools and other organizations that choose <a id="klfi" title="Google Apps" href="http://www.google.com/apps/intl/en/business/index.html#utm_campaign=data_liberation&amp;utm_source=en-na-us-entblog-data_liberation-09142009&amp;utm_medium=blog">Google Apps</a> to provide better tools at a fraction of the cost of traditional solutions,&#8221; says Fitzpatrick. &#8220;It should be easy to bring legacy data into the cloud, share data between Google Apps and other IT infrastructure, and get data out of the cloud if it ever makes sense to stop using our service.</span>&#8220;</p>
<p style="text-align: justify;">At DataLiberation.org, users can simply browse through Google&#8217;s list of products and see detailed instructions for each one about how to &#8220;escape&#8221; to or from any of them. This list includes: AdWords, Alerts, Analytics, App Engine, Apps for Businesses, Blogger, Bookmarks, Calendar, Chrome Boomarks, Contacts, Docs, Finance, Gmail, Health, iGoogle, Maps, Notebook, Orkut, Picasa, Reader, Voice, Web History, and YouTube.</p>
<p style="text-align: justify;">The company says it will be working on adding import/export features to more of its products like Google Sites, and Google Docs (batch-export) in the coming months.</p>
<p style="text-align: justify;">&#8220;We think open is better than closed &#8212; not because closed is inherently bad, but because when it&#8217;s easy for users to leave your product, there&#8217;s a sense of urgency to improve and innovate in order to keep your users,&#8221; says Fitzpatrick. &#8220;When your users are locked in, there&#8217;s a strong temptation to be complacent and focus less on making your product better.&#8221;</p>
<p style="text-align: justify;">Google&#8217;s certainly not the only company to offer data portability options, but it&#8217;s a very large one that has a huge impact on a lot of users and businesses. That&#8217;s why Google&#8217;s work in this area is so important. The company&#8217;s broad range of products that are used heavily on a daily basis emphasizes the importance of the issue on the web in general. Tired of Gmail going down? You can take your info elsewhere if you wish.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/google-wants-you-to-be-able-to-leave-if-you-want/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
