<?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>Web-Tool.ws &#187; SEO</title>
	<atom:link href="http://www.web-tool.ws/category/seo/feed" rel="self" type="application/rss+xml" />
	<link>http://www.web-tool.ws</link>
	<description>Anything about world wide web</description>
	<lastBuildDate>Tue, 20 Jul 2010 06:22:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>PHP Backlink Checker</title>
		<link>http://www.web-tool.ws/seo/backlink/php-backlink-checker</link>
		<comments>http://www.web-tool.ws/seo/backlink/php-backlink-checker#comments</comments>
		<pubDate>Mon, 19 Jan 2009 01:00:35 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Backlink]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Backlink Checker]]></category>
		<category><![CDATA[php snippets]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=138</guid>
		<description><![CDATA[This function is usefull for peoples with a link directory where the links are stored inside a (MySQL) database. The PHP script is easy to use to find out if a reciprocal link still exists on the corresponding webpage. It takes care about the trailing slash in urls and can be used with (almost) every [...]]]></description>
			<content:encoded><![CDATA[This function is usefull for peoples with a link directory where the links are stored inside a (MySQL) database. The PHP script is easy to use to find out if a reciprocal link still exists on the corresponding webpage. It takes care about the trailing slash in urls and can be used with (almost) every url. Inside the function is a check against a regular expression pattern and the result is a simple boolean.

CODE from: http://www.finalwebsites.com
<div style="clear: both;">
<div class="php" style="font-family: monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">function</span> check_back_link<span style="color: #66cc66;">(</span><span style="color: #0000ff;">$remote_url</span>, <span style="color: #0000ff;">$your_link</span><span style="color: #66cc66;">)</span> <span style="color: #66cc66;">{</span>
<span style="color: #0000ff;">$match_pattern</span> = <a href="http://www.php.net/preg_quote"><span style="color: #000066;">preg_quote</span></a><span style="color: #66cc66;">(</span><a href="http://www.php.net/rtrim"><span style="color: #000066;">rtrim</span></a><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$your_link</span>, <span style="color: #ff0000;">&#8220;/&#8221;</span><span style="color: #66cc66;">)</span>, <span style="color: #ff0000;">&#8220;/&#8221;</span><span style="color: #66cc66;">)</span>;
<span style="color: #0000ff;">$found</span> = <span style="color: #000000; font-weight: bold;">false</span>;
<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">(</span><span style="color: #0000ff;">$handle</span> = @<a href="http://www.php.net/fopen"><span style="color: #000066;">fopen</span></a><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$remote_url</span>, <span style="color: #ff0000;">&#8220;r&#8221;</span><span style="color: #66cc66;">)</span><span style="color: #66cc66;">)</span> <span style="color: #66cc66;">{</span>
<span style="color: #b1b100;">while</span> <span style="color: #66cc66;">(</span>!<a href="http://www.php.net/feof"><span style="color: #000066;">feof</span></a><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$handle</span><span style="color: #66cc66;">)</span><span style="color: #66cc66;">)</span> <span style="color: #66cc66;">{</span>
<span style="color: #0000ff;">$part</span> = <a href="http://www.php.net/fread"><span style="color: #000066;">fread</span></a><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$handle</span>, <span style="color: #cc66cc;">1024</span><span style="color: #66cc66;">)</span>;
<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">(</span><a href="http://www.php.net/preg_match"><span style="color: #000066;">preg_match</span></a><span style="color: #66cc66;">(</span><span style="color: #ff0000;">&#8220;/&lt;a(.*)href=[<span style="color: #000099; font-weight: bold;">\"</span>']&#8220;</span>.<span style="color: #0000ff;">$match_pattern</span>.
<span style="color: #ff0000;">&#8220;(<span style="color: #000099; font-weight: bold;">\/</span>?)[<span style="color: #000099; font-weight: bold;">\"</span>'](.*)&gt;(.*)&lt;<span style="color: #000099; font-weight: bold;">\/</span>a&gt;/&#8221;</span>, <span style="color: #0000ff;">$part</span><span style="color: #66cc66;">)</span><span style="color: #66cc66;">)</span> <span style="color: #66cc66;">{</span>
<span style="color: #0000ff;">$found</span> = <span style="color: #000000; font-weight: bold;">true</span>;
<span style="color: #b1b100;">break</span>;
<span style="color: #66cc66;">}</span>
<span style="color: #66cc66;">}</span>
<a href="http://www.php.net/fclose"><span style="color: #000066;">fclose</span></a><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$handle</span><span style="color: #66cc66;">)</span>;
<span style="color: #66cc66;">}</span>
<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$found</span>;
<span style="color: #66cc66;">}</span>
<span style="color: #808080; font-style: italic;">// example:</span>
<span style="color: #808080; font-style: italic;">//if (check_back_link(&#8220;http://www.web-tool.ws&#8221;, &#8220;http://www.fixwordpress.net&#8221;)) echo &#8220;link exists&#8221;;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></div>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/backlink/php-backlink-checker/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Add your URL to Google</title>
		<link>http://www.web-tool.ws/seo/submit-link/add-your-url-to-google</link>
		<comments>http://www.web-tool.ws/seo/submit-link/add-your-url-to-google#comments</comments>
		<pubDate>Sun, 18 Jan 2009 08:21:08 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[AddUrl]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Submit Link]]></category>
		<category><![CDATA[Add your URL]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=227</guid>
		<description><![CDATA[Share your place on the net with Google. Share your place on the net with Google. Google AddUrl]]></description>
			<content:encoded><![CDATA[<p>Share your place on the net with Google.</p><iframe src ="http://www.google.com/addurl/" width="100%" height="600px">
  <p>Share your place on the net with Google.</p>
<a href="http://www.google.com/addurl/" title="Add your URL to Google">Google AddUrl</a>
</iframe>]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/submit-link/add-your-url-to-google/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Google Pagerank Factors</title>
		<link>http://www.web-tool.ws/seo/google-pagerank-factors</link>
		<comments>http://www.web-tool.ws/seo/google-pagerank-factors#comments</comments>
		<pubDate>Sun, 07 Dec 2008 05:10:34 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[Pagerank Factors]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=190</guid>
		<description><![CDATA[Factors that can increase your Google PageRank Now the Google PageRank algorithm can be very complexed, but yet friendly invention. Here is a list of things that could help boost you Google PageRank, with a rating scale beside it of how important we think it is. * Update Pages Frequently 2/10 * Add Pages Frequently [...]]]></description>
			<content:encoded><![CDATA[<strong>Factors that can increase your Google PageRank</strong>

Now the Google PageRank algorithm can be very complexed, but yet friendly invention. Here is a list of things that could help boost you Google PageRank, with a rating scale beside it of how important we think it is.

* Update Pages Frequently 2/10
* Add Pages Frequently 4/10
* Good Neighborhood Directories with high PageRank Levels 7/10
* Monster Websites 7/10
* Quality Inbound links 8/10
* Quality Relevant Links 9/10
* No Broken Links 5/10
* Article Submissions (this can increase your PageRank by getting more inbound links)
* All these put together 10/10

<strong>Factors that can decrease your Google PageRank</strong>

* Bad inbound links such as Poker, Porn, Sex, Drugs, or anything to that nature
* Link spamming
* Bad Content
* Lots of broken links
* SEO Black Hat Techniques

Try our <a title="google page rank checker" href="http://www.web-tool.ws/web-tools/google-pagerank-checker">Google PageRank Checker</a>]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/google-pagerank-factors/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Pagerank Checker</title>
		<link>http://www.web-tool.ws/featured/google-pagerank-checker</link>
		<comments>http://www.web-tool.ws/featured/google-pagerank-checker#comments</comments>
		<pubDate>Fri, 05 Dec 2008 17:03:30 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Backlink]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Page Rank]]></category>
		<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[Google PageRank]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[pagerank checker]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=186</guid>
		<description><![CDATA[This will give you accurate google pagerank! http://www.web-tool.ws Ex. http://www.yourwebsite.com or http://yourwebsite.com]]></description>
			<content:encoded><![CDATA[This will give you accurate google pagerank!
<div style=" padding:0px; margin:0px;">
<div style="float:left; padding:5px; margin:0px;"> 
<SCRIPT type="text/javascript" language="JavaScript" src="http://xslt.alexa.com/site_stats/js/s/a?url=http://www.web-tool.ws"></SCRIPT>
</div>
<div style="float:left; padding:5px; margin:0px;">
<img  style="border:none; padding:0px; margin:0px;" src="http://www.web-tool.ws/wp-content/plugins/genpr/pr/pr-1.jpg" alt="PageRank 1" />
</div>

<p><br /><span>http://www.web-tool.ws</span><br /><img src="http://www.google.com/images/pos.gif" width=10 height=10 border=0 alt="PageRank: 1/10"><img src="http://www.google.com/images/neg.gif" width=90 height=10 border=0 alt="PageRank: 1/10"></p>
</div>	
<div style="clear:both; padding:0px; margin:0px;"></div><form   action="" method="post"><input style="border:solid 1px #eee; width:300px; margin-right:10px; vertical-align: middle;" name="url" type="text" value="http://"><input  type="submit" name="Submit" value="Check Pagerank from Google"></form><br><p>Ex. http://www.yourwebsite.com or http://yourwebsite.com</p>]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/featured/google-pagerank-checker/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Landing Page Type: Transactional</title>
		<link>http://www.web-tool.ws/seo/landing-page-type-transactional</link>
		<comments>http://www.web-tool.ws/seo/landing-page-type-transactional#comments</comments>
		<pubDate>Tue, 02 Sep 2008 15:12:54 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Transactional Landing Page]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=125</guid>
		<description><![CDATA[A transactional landing page seeks to persuade a visitor to complete a transaction such as filling out a form or interacting with advertisements or other objects on the landing page, with the goal being the immediate or eventual sale of a product or service. If information is to be captured, the page will usually withhold [...]]]></description>
			<content:encoded><![CDATA[A <strong><em>transactional</em> </strong>landing page seeks to persuade a visitor to complete a transaction such as filling out a form or interacting with advertisements or other objects on the landing page, with the goal being the immediate or eventual sale of a product or service. If information is to be captured, the page will usually withhold information until some minimal amount of visitor information is provided, typically an email address and perhaps a name and telephone number as well – enough to &#8220;capture the lead&#8221; and add the prospect to a mailing list.]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/landing-page-type-transactional/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Landing Page (Type: Reference)</title>
		<link>http://www.web-tool.ws/seo/landing-page-type-reference</link>
		<comments>http://www.web-tool.ws/seo/landing-page-type-reference#comments</comments>
		<pubDate>Tue, 02 Sep 2008 15:10:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Reference Landing Page]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=123</guid>
		<description><![CDATA[A reference landing page presents information that is relevant to the visitor. These can display text, images, dynamic compilations of relevant links, or other elements. Reference landing pages are effective if they meet the objectives of their publishers, which may be associations, organizations or public service entities. For many reference landing pages, effectiveness can be [...]]]></description>
			<content:encoded><![CDATA[A <em>reference</em> landing page presents information that is relevant to the visitor. These can display text, images, dynamic compilations of relevant links, or other elements. Reference landing pages are effective if they meet the objectives of their publishers, which may be associations, organizations or public service entities. For many reference landing pages, effectiveness can be measured by the revenue value of the advertising that is displayed on them.]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/landing-page-type-reference/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Landing Page</title>
		<link>http://www.web-tool.ws/seo/landing-page</link>
		<comments>http://www.web-tool.ws/seo/landing-page#comments</comments>
		<pubDate>Tue, 02 Sep 2008 15:07:50 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Landing Page]]></category>
		<category><![CDATA[Lead Capture Page]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=121</guid>
		<description><![CDATA[According to Seth Godin, optimised specifically to encourage 1 of 5 actions: Get a visitor to click (to go to another page, on your site or someone else&#8217;s) Get a visitor to buy Get a visitor to give permission for you to follow up (by email, phone, etc.). This includes registration of course. Get a [...]]]></description>
			<content:encoded><![CDATA[<em><strong>According to Seth Godin, optimised specifically to encourage 1 of 5 actions:</strong></em>
<ol>
	<li>Get a visitor to click (to go to another page, on your site or someone else&#8217;s)</li>
	<li>Get a visitor to buy</li>
	<li>Get a visitor to give permission for you to follow up (by email, phone, etc.). This includes registration of course.</li>
	<li>Get a visitor to tell a friend</li>
	<li>Get a visitor to learn something, which could even include posting a comment or giving you some sort of feedback</li>
</ol>
In online marketing a landing page, sometimes known as a lead capture page, is the page that appears when a potential customer clicks on an advertisement or a search-engine result link. The page will usually display content that is a logical extension of the advertisement or link, and that is optimized to feature specific keywords or phrases for indexing by search engines.

In pay per click (PPC) campaigns, the landing page will also be customized to measure the effectiveness of different advertisements. By adding a parameter to the linking URL, marketers can measure advertisement effectiveness based on relative click-through rates.
<h3>Every page of a site indexed by search engines is a potential landing page.</h3>
The goal of search engine optimization (SEO) is to leave few landings to chance. The content of the page and/or links to the page are optimized for very specific, carefully researched keywords and phrases. Those keywords and phrases that are of most value for &#8220;organic&#8221; or &#8220;natural&#8221; search engine optimization are those most likely to be used by prospective customers in their search engines. Good choices will cause the site to rank higher in search engine results.

For large websites covering many products or many topics, a single home page cannot be optimized for every topic and still be relevant to all. A different approach is needed, a landing page that will not convert a visitor directly. A &#8220;hub&#8221; page is optimized for more generic, less targeted keyword phrases that have naturally a lower conversion rate than more-specific search terms. Hub landing pages serve as a &#8220;mini portal&#8221; within a site – the site establishes a number of virtual home pages, each for a broader topic.]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/landing-page/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Easy Submit</title>
		<link>http://www.web-tool.ws/seo/submit-link/easy-submit</link>
		<comments>http://www.web-tool.ws/seo/submit-link/easy-submit#comments</comments>
		<pubDate>Tue, 05 Aug 2008 10:58:54 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[AddUrl]]></category>
		<category><![CDATA[Submit Link]]></category>
		<category><![CDATA[search engine submissions]]></category>
		<category><![CDATA[submit to search engines]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/web-tools/easy-submit</guid>
		<description><![CDATA[This tool will allow you to submit to many more search engines and will automatically complete this entire form with your Web page information entered for you? Not only can you submit to more search engines, but also you will learn how search engines work and how you can achieve TOP search engine placement.]]></description>
			<content:encoded><![CDATA[This tool will allow you to submit to many more search engines and will automatically complete this entire form with your Web page information entered for you? Not only can you submit to more search engines, but also you will learn how search engines work and how you can achieve TOP search engine placement.

<iframe src="http://www.scrubtheweb.com/abs/submit/" title="Easy Submit" align="top" height="800" width="500"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/submit-link/easy-submit/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Backlinks</title>
		<link>http://www.web-tool.ws/seo/backlink/backlinks</link>
		<comments>http://www.web-tool.ws/seo/backlink/backlinks#comments</comments>
		<pubDate>Tue, 29 Apr 2008 13:34:41 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Backlink]]></category>
		<category><![CDATA[Backlinks are incoming links to a web page or website]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=83</guid>
		<description><![CDATA[Backlinks are also known as incoming links, inbound links, inlinks, and inward links. Backlinks are incoming links to a web page or website. The number of backlinks is an indication of the popularity or importance of that website or page.In basic link terminology, a backlink is any link received by a web node (web page, [...]]]></description>
			<content:encoded><![CDATA[Backlinks are also known as incoming links, inbound links, inlinks, and inward links.
Backlinks are incoming links to a web page or website. The number of backlinks is an indication of the popularity or importance of that website or page.In basic link terminology, a backlink is any link received by a web node (web page, directory, website, or top level domain) from another web node.

*
A Web node allows you to define collections of web providers (web         nodes). You can either chose the providers yourself or select from         the provider registry of a Portal.]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/backlink/backlinks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Supplemental Results</title>
		<link>http://www.web-tool.ws/seo/supplemental-results</link>
		<comments>http://www.web-tool.ws/seo/supplemental-results#comments</comments>
		<pubDate>Mon, 17 Mar 2008 12:44:54 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Supplemental results are not indications of a penalty]]></category>
		<category><![CDATA[Supplemental results Known issues:]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/google-reseach/supplemental-results</guid>
		<description><![CDATA[Supplemental results are not indications of a penalty, and not necessarily are symptoms of any kind of problem with your web site. These pages are cached, sorted and ranked based on relevance just as normal results, and are displayed on search result pages.Supplemental results also may be indicating a previous version of a resource, at [...]]]></description>
			<content:encoded><![CDATA[<h1>Supplemental results are not indications of a penalty,</h1>
and not necessarily          are symptoms of any kind of problem with your web site. These pages are          cached, sorted and ranked based on relevance just as normal results, and          are displayed on search result pages.Supplemental results also may be indicating a previous version of a resource,          at a URL that is otherwise featured in the index as non-supplemental,          may show a now deleted redirected URL ( in both cases with a copy of the          recorded state of the web page in the cache, for up to a year ), or simply          be caused by the URL being identified as redundant, but none the less          relevant information for a certain query.
Supplemental results may rank best for obscure search queries.

A URL being listed in the supplemental instead of the primary Index is          not a final and irreversible decision, and may change over time, as the          page the URL refers to gets more and more referring links on the web from          more important pages. Also, should a page lose its significance and thus          its inbound links, it may be moved from the primary Index to the supplemental.
<h1>Supplemental results Known issues:</h1>
<strong>Case 1,</strong>
<em> Supplemental results</em> are perceived by many as a penalty due to the fact          that these results display below the normal results. These URLs are not          penalized, only judged to be lower of importance by the algorithm, based          on the same factors that sort all results.

<strong><span class="headline">+</span> Resolution:</strong> Supplemental pages          in most cases have a low PageRank ( 0 ), indicating the most common issue,          which is that they do not have enough quality and on-topic inbound links.          In other words, there are too few or no references from other trusted          and important web sites for the page. In case you feel your pages carry          unique, nowhere else to be found information, information presented in          a unique way, or that they should be recognized by the Google index as          so, it should be your priority, and should be of no problem to inform          people of their existence. Also visitors to other parts of your web site          will sometimes find a certain page to be interesting enough to link to          directly, to mention it on the Internet on other pages, and thus add to          its importance. A page once Supplemental will be featured as a normal          result once it is perceived trusted and important. Please note that this          in no way means that you should participate in link schemes, purchase          links to trick the algorithm or apply spam like tactics, for they are          quite unlikely to work due to the filters identifying such patterns. The          emphasis should be on natural linking.
<strong>Case 2,</strong>
In case your information is unique, or presented in a unique way, and          your page(s) are marked as Supplemental, the web site may use a navigation          that renders the URLs in question to be perceived of too low importance.          While a web site itself may be showing normal results in the index, if          pages not too far from the domain root are already considered unimportant,          the navigation is most likely directing the attention away from them,          especially by the logic of Googlebot.

<strong><span class="headline">+</span> Resolution: </strong>Lay out the site navigation          in a way that the same level pages are in fact perceived by Googlebot          as same level. Be reasonable, as for the truly unique information is likely          to be less than you&#8217;d like to think, and patterns of several thousands          of pages with very low importance are sometimes examined closely for being          spam or not. Try to set up navigation funnels that are easy to follow,          categorize the information in a comprehensive way, and provide a navigation          that emphasizes the importance of a page by its reachability. Again, be          reasonable. Having too many links on a single page for the sake of bringing          all of them to the same level will result in the opposite effect than          intended. Read more on Website Navigation and PageRank.
<strong>Case 3,</strong>
The Supplemental index is seen as incomplete, and is in the same process          of constant updating as the normal index. Certain pages of your competitors&#8217;          may yet to be evaluated for being supplemental or not. In other words,          a page on your site being marked as supplemental, while a similar page          on another site is not, does not mean it will remain as so. The same parameters          are judged for each URL, thus once most of the relevant pages are checked,          the supplemental index will most likely be perceived as it&#8217;s name would          indicate, supplemental results from related, less significant pages.

<strong><span class="headline">+</span> Resolution:</strong> The supplemental index          is being crawled and updated regularly, although not quite as often as          the normal index. However in case a web page in either index is found          more suited for the other, it will be updated as so.]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/supplemental-results/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
