<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" version="2.0">
  <channel>
    <title>blog.ActiveServers</title>
    <link>http://blog.activeservers.com/</link>
    <description>ActiveServers Support Blog</description>
    <copyright>Activeservers</copyright>
    <lastBuildDate>Sun, 16 Mar 2008 14:54:20 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 1.8.5223.0</generator>
    <managingEditor>blog@activeservers.com</managingEditor>
    <webMaster>blog@activeservers.com</webMaster>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=6ea036dc-4d64-403e-972c-4d0304c687fe</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,6ea036dc-4d64-403e-972c-4d0304c687fe.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <table style="WIDTH: 100%" cellpadding="2">
          <tbody>
            <tr>
              <td style="WIDTH: 60%">
               Do you have  multiple domain names that all lead to the same web site? Valid
               reasons for doing this include helping visitors who may type a domain name with spelling
               mistakes, hyphens, no hyphens or confuse different names, as well as preventing competitors
               and name squatters from using a similar domain name. For a few dollars per year per
               domain name, it often makes sense to buy all the obvious mistakes and permutations
               of your valuable domains.</td>
              <td class="style2">
                <p align="center">
                  <a href="http://www.apache.org/" target="new">
                    <img src="http://blog.activeservers.com/content/binary/re-apache.jpg" border="0" />
                  </a>
                  <br />
                  With <a href="http://www.apache.org/">Apache</a> servers 
                  <br />
                  use <a href="http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html" target="new">mod_rewrite</a></p>
              </td>
            </tr>
            <tr>
              <td style="WIDTH: 60%">
               When you attach multiple domain names to a site, search engines can become confused
               and your rankings may suffer. If they find the same page at two or more different
               URLs, the search engines will sometimes filter out the extra listings, but there's
               no guarantee of which ones they filter. You also don't want people linking to your
               site with non-standard domain names because that will tend to divide your inbound
               link strength. Google themselves say,</td>
              <td>
                <p align="center">
                  <a href="http://www.microsoft.com/windowsserver2003/iis/default.mspx">
                    <img src="http://blog.activeservers.com/content/binary/re-windows.jpg" border="0" />
                  </a>
                </p>
                <p>
                </p>
                <div class="align center" align="center">With Microsoft <a href="http://www.microsoft.com/windowsserver2003/iis/default.mspx" target="new">Windows 
                  <br />
                  Internet Information<br />
                  Services</a> (IIS) servers 
                  <br />
                  use <a href="http://www.helicontech.com/isapi_rewrite/" target="new">ISAPI_rewrite</a></div>
              </td>
            </tr>
          </tbody>
        </table>
        <p>
      "If your site is appearing as two different listings in our search results, we suggest
      consolidating these listings so we can more accurately determine your site's PageRank."<em></em><sup><a href="http://www.google.com/support/webmasters/bin/answer.py?answer=34481&amp;ctx=sibling" target="new">1</a></sup></p>
        <p>
      Why leave it to chance? With a few lines of code you can make sure all your URLs use
      consistent domain names. When we have multiple domain names on one site, we set up
      a permanent 301 redirect for any extra domains, as well as the www subdomain or the
      non-www domain. If you have an Apache web server, add the following code to a <a href="http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html" target="new">.htaccess</a> file
      in the top level directory, replacing the test domain name with yours:
   </p>
        <pre style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px">
          <font color="#a52a2a">Options
   +FollowSymlinks RewriteEngine on RewriteCond %{HTTP_HOST} !^www\.test\.com RewriteRule
   ^(.*) http://www.test.com/$1 [L,R=301]</font>
        </pre>
        <p>
      If you are using a Microsoft IIS web server, we recommend using <a href="http://www.helicontech.com/isapi_rewrite/" target="new">ISAPI_rewrite</a> to
      simulate Apache's .htaccess feature. To begin, you or your hosting provider needs
      to install ISAPI_rewrite on the server. Then you would create a httpd.ini file in
      the top level directory as follows, replacing the test domain name with yours.
   </p>
        <pre style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px">
          <font color="#a52a2a">RewriteCond
   Host: (?!^www\.test\.com$).* RewriteRule (.+) http\://www.test.com$1 [RP,I]</font>
        </pre>
        <p>
      These solutions assume you prefer to use the www subdomain for your website. If you
      would rather have a non-www URL, simply remove each instance of "www\." and "www."
      from the rewrite conditions and rules. As with all code, please test thoroughly before
      deploying to your live server. 
   </p>
        <p>
      If your host does not offer ISAPI rewrite you could create a second IIS entry and
      redirect all the similar names to the primary (i.e.) <a href="http://www.activeservers.com/">www.domain.com</a>.
      This method does take two IIS entries but will certainly achieve the same thing without
      the need for ISAPI rewrite if your host does not offer it. 
   </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=6ea036dc-4d64-403e-972c-4d0304c687fe" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>Multiple Web site 301 Redirect</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,6ea036dc-4d64-403e-972c-4d0304c687fe.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,6ea036dc-4d64-403e-972c-4d0304c687fe.aspx</link>
      <pubDate>Sun, 16 Mar 2008 14:54:20 GMT</pubDate>
      <description>&lt;table style="WIDTH: 100%" cellpadding=2&gt;
   &lt;tbody&gt;
      &lt;tr&gt;
         &lt;td style="WIDTH: 60%"&gt;
            Do you have&amp;nbsp; multiple domain names that all lead to the same web site? Valid
            reasons for doing this include helping visitors who may type a domain name with spelling
            mistakes, hyphens, no hyphens or confuse different names, as well as preventing competitors
            and name squatters from using a similar domain name. For a few dollars per year per
            domain name, it often makes sense to buy all the obvious mistakes and permutations
            of your valuable domains.&lt;/td&gt;
         &lt;td class=style2&gt;
            &lt;p align=center&gt;
               &lt;a href="http://www.apache.org/" target=new&gt;&lt;img src="http://blog.activeservers.com/content/binary/re-apache.jpg" border=0&gt;&lt;/a&gt;
               &lt;br&gt;
               With &lt;a href="http://www.apache.org/"&gt;Apache&lt;/a&gt; servers 
               &lt;br&gt;
               use &lt;a href="http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html" target=new&gt;mod_rewrite&lt;/a&gt;
            &lt;/p&gt;
         &lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
         &lt;td style="WIDTH: 60%"&gt;
            When you attach multiple domain names to a site, search engines can become confused
            and your rankings may suffer. If they find the same page at two or more different
            URLs, the search engines will sometimes filter out the extra listings, but there's
            no guarantee of which ones they filter. You also don't want people linking to your
            site with non-standard domain names because that will tend to divide your inbound
            link strength. Google themselves say,&lt;/td&gt;
         &lt;td&gt;
            &lt;p align=center&gt;
               &lt;a href="http://www.microsoft.com/windowsserver2003/iis/default.mspx"&gt;&lt;img src="http://blog.activeservers.com/content/binary/re-windows.jpg" border=0&gt;&lt;/a&gt;
            &lt;/p&gt;
            &lt;p&gt;
            &lt;/p&gt;
            &lt;div class="align center" align=center&gt;With Microsoft &lt;a href="http://www.microsoft.com/windowsserver2003/iis/default.mspx" target=new&gt;Windows 
               &lt;br&gt;
               Internet Information&lt;br&gt;
               Services&lt;/a&gt; (IIS) servers 
               &lt;br&gt;
               use &lt;a href="http://www.helicontech.com/isapi_rewrite/" target=new&gt;ISAPI_rewrite&lt;/a&gt;
            &lt;/div&gt;
         &lt;/td&gt;
      &lt;/tr&gt;
   &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;
   "If your site is appearing as two different listings in our search results, we suggest
   consolidating these listings so we can more accurately determine your site's PageRank."&lt;em&gt; &lt;/em&gt;&lt;sup&gt;&lt;a href="http://www.google.com/support/webmasters/bin/answer.py?answer=34481&amp;amp;ctx=sibling" target=new&gt;1&lt;/a&gt;&lt;/sup&gt;
&lt;/p&gt;
&lt;p&gt;
   Why leave it to chance? With a few lines of code you can make sure all your URLs use
   consistent domain names. When we have multiple domain names on one site, we set up
   a permanent 301 redirect for any extra domains, as well as the www subdomain or the
   non-www domain. If you have an Apache web server, add the following code to a &lt;a href="http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html" target=new&gt;.htaccess&lt;/a&gt; file
   in the top level directory, replacing the test domain name with yours:
&lt;/p&gt;
&lt;pre style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px"&gt;&lt;font color=#a52a2a&gt;Options
+FollowSymlinks RewriteEngine on RewriteCond %{HTTP_HOST} !^www\.test\.com RewriteRule
^(.*) http://www.test.com/$1 [L,R=301]&lt;/font&gt;&lt;/pre&gt;
&lt;p&gt;
   If you are using a Microsoft IIS web server, we recommend using &lt;a href="http://www.helicontech.com/isapi_rewrite/" target=new&gt;ISAPI_rewrite&lt;/a&gt; to
   simulate Apache's .htaccess feature. To begin, you or your hosting provider needs
   to install ISAPI_rewrite on the server. Then you would create a httpd.ini file in
   the top level directory as follows, replacing the test domain name with yours.
&lt;/p&gt;
&lt;pre style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px"&gt;&lt;font color=#a52a2a&gt;RewriteCond
Host: (?!^www\.test\.com$).* RewriteRule (.+) http\://www.test.com$1 [RP,I]&lt;/font&gt;&lt;/pre&gt;
&lt;p&gt;
   These solutions assume you prefer to use the www subdomain for your website. If you
   would rather have a non-www URL, simply remove each instance of "www\." and "www."
   from the rewrite conditions and rules. As with all code, please test thoroughly before
   deploying to your live server. 
&lt;/p&gt;
&lt;p&gt;
   If your host does not offer ISAPI rewrite you could create a second IIS entry and
   redirect all the similar names to the primary (i.e.) &lt;a href="http://www.activeservers.com/"&gt;www.domain.com&lt;/a&gt;.
   This method does take two IIS entries but will certainly achieve the same thing without
   the need for ISAPI rewrite if your host does not offer it. 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=6ea036dc-4d64-403e-972c-4d0304c687fe" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=73c29036-5909-41bc-a089-d07d06eecc03</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,73c29036-5909-41bc-a089-d07d06eecc03.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Many businesses are blind to the possibilities that emerging online trends such as
      blogs can offer them. The challenge lies into how you use them and integrate them
      into your business. Someone once said that blog stands for Better Listings On Google!
      However there are many other business advantages which we will look at. The challenge
      is in determining how a blog best fits your business goals. Your goals may be marketing
      focused, or they may be about project management, or they may be about customer relationships.
      Whatever your business goals are you should determine whether a blog can help you
      meet them.
   </p>
        <p>
      A blogs or 'weblog’ is a regularly updated internet journal of organized personal
      thoughts made usually by an individual. In the business world this may be either as
      an official corporate blog or in an unofficial capacity. Business blogs usually incorporate
      news, issues, and ideas and speak to customers, vendors and employees. What makes
      blogs unique is that they link with other blogs and websites and solicit comments
      making them the ideal platform for an ongoing dialogue. Blogs are inexpensive, easy
      to set up and use, and require no technical skills such as HTML. The collective term
      for blogs is the blogosphere.
   </p>
        <p>
      The blogosphere continues to grow. Technorati the leading web search engine is currently
      tracking 19.6 million blogs. About 70,000 new blogs are tracked every day. The total
      number of blogs continues to double every 5 months or so. There are between 700,000
      and 1.3 million blog posts made every day. Both Google and Yahoo are introducing blogs
      search engines. Yahoo is currently showing a beta version of blog search results alongside
      their news results.  <a href="http://www.elixirsystems.com/articles/a051019.php" target="new">"Full
      Article"</a></p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=73c29036-5909-41bc-a089-d07d06eecc03" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>Business and Blogs</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,73c29036-5909-41bc-a089-d07d06eecc03.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,73c29036-5909-41bc-a089-d07d06eecc03.aspx</link>
      <pubDate>Sun, 09 Apr 2006 02:03:30 GMT</pubDate>
      <description>&lt;p&gt;
   Many businesses are blind to the possibilities that emerging online trends such as
   blogs can offer them. The challenge lies into how you use them and integrate them
   into your business. Someone once said that blog stands for Better Listings On Google!
   However there are many other business advantages which we will look at. The challenge
   is in determining how a blog best fits your business goals. Your goals may be marketing
   focused, or they may be about project management, or they may be about customer relationships.
   Whatever your business goals are you should determine whether a blog can help you
   meet them.
&lt;/p&gt;
&lt;p&gt;
   A blogs or 'weblog’ is a regularly updated internet journal of organized personal
   thoughts made usually by an individual. In the business world this may be either as
   an official corporate blog or in an unofficial capacity. Business blogs usually incorporate
   news, issues, and ideas and speak to customers, vendors and employees. What makes
   blogs unique is that they link with other blogs and websites and solicit comments
   making them the ideal platform for an ongoing dialogue. Blogs are inexpensive, easy
   to set up and use, and require no technical skills such as HTML. The collective term
   for blogs is the blogosphere.
&lt;/p&gt;
&lt;p&gt;
   The blogosphere continues to grow. Technorati the leading web search engine is currently
   tracking 19.6 million blogs. About 70,000 new blogs are tracked every day. The total
   number of blogs continues to double every 5 months or so. There are between 700,000
   and 1.3 million blog posts made every day. Both Google and Yahoo are introducing blogs
   search engines. Yahoo is currently showing a beta version of blog search results alongside
   their news results.&amp;nbsp; &lt;a href="http://www.elixirsystems.com/articles/a051019.php" target=new&gt;"Full
   Article"&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=73c29036-5909-41bc-a089-d07d06eecc03" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=685f3866-330e-4d34-9682-7d3596e40c8a</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,685f3866-330e-4d34-9682-7d3596e40c8a.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Ben Edelman has again made some damning claims about Yahoo and its relationship with
      spyware vendors. Have your Overture campaigns seen behavior that looks like click
      fraud? Tell us more at <a href="http://www.webproworld.com/viewtopic.php?p=294002" target="new">WebProWorld</a>.<br /><br />
      When that click is paid, according to spyware researcher Ben Edelman, Yahoo and the
      spyware vendor split the revenue. Edelman <a class="bluelink" href="http://www.benedelman.org/news/040406-1.html" target="new">has
      followed up</a> his <a href="http://www.benedelman.org/news/083105-1.html" target="new">August
      2005</a> research into spyware receiving payments from Yahoo's Overture by noting
      an increase in this possible syndication fraud. 
      <br /><br />
      "In my August syndication fraud examples, an advertiser only pays Yahoo if a user
      clicks the advertiser's ad. Not so for three of today's examples. Here, spyware completely
      fakes a click -- causing Yahoo to charge an advertiser a "pay-per-click" fee, even
      though no user actually clicked on any pay-per-click link. This is "click fraud,"
      Edelman wrote.   <a href="http://www.webpronews.com/insiderreports/marketinginsider/wpn-50-20060404YahooImplicatedInSpywareClickFraud.html" target="new">"Full
      Article"<br /></a></p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=685f3866-330e-4d34-9682-7d3596e40c8a" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>Yahoo and Spyware Click Fraud</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,685f3866-330e-4d34-9682-7d3596e40c8a.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,685f3866-330e-4d34-9682-7d3596e40c8a.aspx</link>
      <pubDate>Sat, 08 Apr 2006 17:21:10 GMT</pubDate>
      <description>&lt;p&gt;
   Ben Edelman has again made some damning claims about Yahoo and its relationship with
   spyware vendors. Have your Overture campaigns seen behavior that looks like click
   fraud? Tell us more at &lt;a href="http://www.webproworld.com/viewtopic.php?p=294002" target=new&gt;WebProWorld&lt;/a&gt;.&lt;br&gt;
   &lt;br&gt;
   When that click is paid, according to spyware researcher Ben Edelman, Yahoo and the
   spyware vendor split the revenue. Edelman &lt;a class=bluelink href="http://www.benedelman.org/news/040406-1.html" target=new&gt;has
   followed up&lt;/a&gt; his &lt;a href="http://www.benedelman.org/news/083105-1.html" target=new&gt;August
   2005&lt;/a&gt; research into spyware receiving payments from Yahoo's Overture by noting
   an increase in this possible syndication fraud. 
   &lt;br&gt;
   &lt;br&gt;
   "In my August syndication fraud examples, an advertiser only pays Yahoo if a user
   clicks the advertiser's ad. Not so for three of today's examples. Here, spyware completely
   fakes a click -- causing Yahoo to charge an advertiser a "pay-per-click" fee, even
   though no user actually clicked on any pay-per-click link. This is "click fraud,"
   Edelman wrote.&amp;nbsp;&amp;nbsp; &lt;a href="http://www.webpronews.com/insiderreports/marketinginsider/wpn-50-20060404YahooImplicatedInSpywareClickFraud.html" target=new&gt;"Full
   Article"&lt;br&gt;
   &lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=685f3866-330e-4d34-9682-7d3596e40c8a" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=6e96686b-9b29-458f-bc73-57da9e2d798f</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,6e96686b-9b29-458f-bc73-57da9e2d798f.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Microsoft Corp. is launching a revamped Internet search engine it says will help computer
      users find information faster, view it more easily and organize it better. 
   </p>
        <p>
      Debuting in test form Wednesday, Windows Live Search is Microsoft's latest move in
      a major strategy shift that has the world's largest software company focusing more
      heavily on Internet-based software and services.
   </p>
        <p>
      The goal of the shift, which includes initiatives dubbed Windows Live and Office Live,
      is to create online products to complement its main cash cows: the Windows operating
      system and Office business software.
   </p>
        <p>
      Windows Live Search will power queries on live.com, Microsoft's Windows Live Web site,
      beginning Wednesday. Once the technology has been fully tested, Windows Live Search
      will replace the existing search engine that powers MSN.com. MSN spokesman Adam Sohn
      said the company has not determined how long it will run Windows Live Search as a
      test.
   </p>
        <p>
      A key goal with the new search engine will be to give people more control over how
      they search for information and how they put it to use once they get it, said Yusuf
      Mehdi, senior vice president of information services at MSN, the division that's working
      on Windows Live.
   </p>
        <p>
      "A lot of people think, 'Hey, ... Didn't Google become the popular search engine?
      And don't they just do a great job? And there's no room for improvement.'" Mehdi said.
      Once people get a feel for Windows Live Search, Mehdi said, "They're going to say,
      'Holy cow, I had no idea that search could get this much better!'"
   </p>
        <p>
      The new search engine includes features such as support for tabbed Web browsing, which
      lets people keep several search panes open in a single window. Microsoft said other
      features will include:
   </p>
        <p>
      _A search slider bar that offers previews of data in various forms, perhaps just the
      Internet address of a Web site, or maybe a snippet of text. As the slider is adjusted,
      more or less information appears.
   </p>
        <p>
      _A "smart scroll" function that displays all search results at once rather than on
      separate pages.
   </p>
        <p>
      _Various ways to view pictures, say, as small "thumbnail" shots or full-sized images,
      without leaving the search page.
   </p>
        <p>
      _An ability for users to save their search parameters as macros that can be run to
      perform the same search in the future. Microsoft said people will also be able to
      publish their search macros so people with similar interests can use them.
   </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=6e96686b-9b29-458f-bc73-57da9e2d798f" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>MS make first play for "Live Search"</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,6e96686b-9b29-458f-bc73-57da9e2d798f.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,6e96686b-9b29-458f-bc73-57da9e2d798f.aspx</link>
      <pubDate>Thu, 09 Mar 2006 14:58:22 GMT</pubDate>
      <description>&lt;p&gt;
   Microsoft Corp. is launching a revamped Internet search engine it says will help computer
   users find information faster, view it more easily and organize it better. 
&lt;/p&gt;
&lt;p&gt;
   Debuting in test form Wednesday, Windows Live Search is Microsoft's latest move in
   a major strategy shift that has the world's largest software company focusing more
   heavily on Internet-based software and services.
&lt;/p&gt;
&lt;p&gt;
   The goal of the shift, which includes initiatives dubbed Windows Live and Office Live,
   is to create online products to complement its main cash cows: the Windows operating
   system and Office business software.
&lt;/p&gt;
&lt;p&gt;
   Windows Live Search will power queries on live.com, Microsoft's Windows Live Web site,
   beginning Wednesday. Once the technology has been fully tested, Windows Live Search
   will replace the existing search engine that powers MSN.com. MSN spokesman Adam Sohn
   said the company has not determined how long it will run Windows Live Search as a
   test.
&lt;/p&gt;
&lt;p&gt;
   A key goal with the new search engine will be to give people more control over how
   they search for information and how they put it to use once they get it, said Yusuf
   Mehdi, senior vice president of information services at MSN, the division that's working
   on Windows Live.
&lt;/p&gt;
&lt;p&gt;
   "A lot of people think, 'Hey, ... Didn't Google become the popular search engine?
   And don't they just do a great job? And there's no room for improvement.'" Mehdi said.
   Once people get a feel for Windows Live Search, Mehdi said, "They're going to say,
   'Holy cow, I had no idea that search could get this much better!'"
&lt;/p&gt;
&lt;p&gt;
   The new search engine includes features such as support for tabbed Web browsing, which
   lets people keep several search panes open in a single window. Microsoft said other
   features will include:
&lt;/p&gt;
&lt;p&gt;
   _A search slider bar that offers previews of data in various forms, perhaps just the
   Internet address of a Web site, or maybe a snippet of text. As the slider is adjusted,
   more or less information appears.
&lt;/p&gt;
&lt;p&gt;
   _A "smart scroll" function that displays all search results at once rather than on
   separate pages.
&lt;/p&gt;
&lt;p&gt;
   _Various ways to view pictures, say, as small "thumbnail" shots or full-sized images,
   without leaving the search page.
&lt;/p&gt;
&lt;p&gt;
   _An ability for users to save their search parameters as macros that can be run to
   perform the same search in the future. Microsoft said people will also be able to
   publish their search macros so people with similar interests can use them.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=6e96686b-9b29-458f-bc73-57da9e2d798f" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=1a9136e5-61b2-4f84-88b8-b8fc118afc96</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,1a9136e5-61b2-4f84-88b8-b8fc118afc96.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <b>The Stanford guidelines for web credibility:</b>
        </p>
        <ul>
          <li style="MARGIN-BOTTOM: 10px">
         Make it easy to verify the accuracy of the information on your site. 
      </li>
          <li style="MARGIN-BOTTOM: 10px">
         Show that there's a real organization behind your site. 
      </li>
          <li style="MARGIN-BOTTOM: 10px">
         Highlight the expertise in your organization and in the content and services you provide. 
      </li>
          <li style="MARGIN-BOTTOM: 10px">
         Show that honest and trustworthy people stand behind your site. 
      </li>
          <li style="MARGIN-BOTTOM: 10px">
         Make it easy to contact you. 
      </li>
          <li style="MARGIN-BOTTOM: 10px">
         Design your site so it looks professional (or is appropriate for your purpose). 
      </li>
          <li style="MARGIN-BOTTOM: 10px">
         Make your site easy to use -- and useful. 
      </li>
          <li style="MARGIN-BOTTOM: 10px">
         Update your site's content often (at least show it's been reviewed recently). 
      </li>
          <li style="MARGIN-BOTTOM: 10px">
         Use restraint with any promotional content (e.g., ads, offers). 
      </li>
          <li style="MARGIN-BOTTOM: 10px">
         Avoid errors of all types, no matter how small they seem. 
      </li>
        </ul>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=1a9136e5-61b2-4f84-88b8-b8fc118afc96" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>Standford Top Ten guidelines</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,1a9136e5-61b2-4f84-88b8-b8fc118afc96.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,1a9136e5-61b2-4f84-88b8-b8fc118afc96.aspx</link>
      <pubDate>Fri, 24 Feb 2006 16:38:58 GMT</pubDate>
      <description>&lt;p&gt;
   &lt;b&gt;The Stanford guidelines for web credibility:&lt;/b&gt;
&lt;/p&gt;
&lt;ul&gt;
   &lt;li style="MARGIN-BOTTOM: 10px"&gt;
      Make it easy to verify the accuracy of the information on your site. 
   &lt;li style="MARGIN-BOTTOM: 10px"&gt;
      Show that there's a real organization behind your site. 
   &lt;li style="MARGIN-BOTTOM: 10px"&gt;
      Highlight the expertise in your organization and in the content and services you provide. 
   &lt;li style="MARGIN-BOTTOM: 10px"&gt;
      Show that honest and trustworthy people stand behind your site. 
   &lt;li style="MARGIN-BOTTOM: 10px"&gt;
      Make it easy to contact you. 
   &lt;li style="MARGIN-BOTTOM: 10px"&gt;
      Design your site so it looks professional (or is appropriate for your purpose). 
   &lt;li style="MARGIN-BOTTOM: 10px"&gt;
      Make your site easy to use -- and useful. 
   &lt;li style="MARGIN-BOTTOM: 10px"&gt;
      Update your site's content often (at least show it's been reviewed recently). 
   &lt;li style="MARGIN-BOTTOM: 10px"&gt;
      Use restraint with any promotional content (e.g., ads, offers). 
   &lt;li style="MARGIN-BOTTOM: 10px"&gt;
      Avoid errors of all types, no matter how small they seem. 
   &lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=1a9136e5-61b2-4f84-88b8-b8fc118afc96" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=ebabfb8e-48d7-4e24-b6ca-cecab7ad7238</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,ebabfb8e-48d7-4e24-b6ca-cecab7ad7238.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Google has announced a major update that will affect the ranking of web pages in Google's
      index. In contrast to the usual algorithm updates, this update will be much bigger
      because it changes the way Google works behind the scenes. Google has given the update
      the name "Bigdaddy".
   </p>
        <p>
          <b>What is Google's Bigdaddy update?</b>
        </p>
        <blockquote>
          <p>
      Google uses a network of data centers with different IP addresses to answer search
      queries. These decentralized servers share the workload of indexing web sites.
   </p>
          <p>
      The upcoming Bigdaddy update is not an algorithm update but a change in Google's data
      center infrastructure. It contains new code for sorting and examining web pages. According
      to Google's search engineer Matt Cutts, the update will be live in February or March.
   </p>
        </blockquote>
        <p>
          <b>Less spam, more content and a new Google spider?</b>
        </p>
        <blockquote>
          <p>
      Google is updating the data center infrastructure to handle potential spam problems
      such as 302 redirections or <a href="http://www.mattcutts.com/blog/seo-advice-url-canonicalization/" target="_blank"><font color="#0058ee">canonical
      URLs</font></a> more efficiently. In addition, the new infrastructure will allow Google
      to develop more advanced algorithms and larger databases.
   </p>
        </blockquote>
        <blockquote>
          <p>
      Another reason for the new data center infrastructure is that Google wants to be able
      to index different content types. Google is now testing a new search engine spider
      that is based on the Mozilla browser.
   </p>
          <p>
      The new spider should be able to index more than traditional search engine spiders,
      possibly links within images, JavaScripts or Flash files.
   </p>
        </blockquote>
        <p>
          <b>How can you test how Bigdaddy will affect your rankings? </b>
        </p>
        <blockquote>
          <p>
      Some Google data centers that use the new Bigdaddy system are already online. For
      example, if you go to <a href="http://66.249.93.104/" target="_blank"><font color="#0058ee">66.249.93.104</font></a> you
      can test Google's new data center.
   </p>
          <p>
      Google even wants your feedback. Click the "<i>Dissatisfied? Help us improve</i>"
      link at the bottom right of the result page. Enter your feedback and use the keyword <i>bigdaddy</i> so
      that Google knows that your feedback is about the new data center. 
   </p>
        </blockquote>
        <p>
      It's hard to tell how the Bigdaddy update will affect your web page rankings. If you
      have a spam free web site with good content and many incoming links, the update should
      have a positive effect on your Google rankings.
   </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=ebabfb8e-48d7-4e24-b6ca-cecab7ad7238" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>Big Changes Google Bigdaddy</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,ebabfb8e-48d7-4e24-b6ca-cecab7ad7238.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,ebabfb8e-48d7-4e24-b6ca-cecab7ad7238.aspx</link>
      <pubDate>Mon, 06 Feb 2006 16:32:41 GMT</pubDate>
      <description>&lt;p&gt;
   Google has announced a major update that will affect the ranking of web pages in Google's
   index. In contrast to the usual algorithm updates, this update will be much bigger
   because it changes the way Google works behind the scenes. Google has given the update
   the name "Bigdaddy".
&lt;/p&gt;
&lt;p&gt;
   &lt;b&gt;What is Google's Bigdaddy update?&lt;/b&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
   Google uses a network of data centers with different IP addresses to answer search
   queries. These decentralized servers share the workload of indexing web sites.
&lt;/p&gt;
&lt;p&gt;
   The upcoming Bigdaddy update is not an algorithm update but a change in Google's data
   center infrastructure. It contains new code for sorting and examining web pages. According
   to Google's search engineer Matt Cutts, the update will be live in February or March.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
   &lt;b&gt;Less spam, more content and a new Google spider?&lt;/b&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
   Google is updating the data center infrastructure to handle potential spam problems
   such as 302 redirections or &lt;a href="http://www.mattcutts.com/blog/seo-advice-url-canonicalization/" target=_blank&gt;&lt;font color=#0058ee&gt;canonical
   URLs&lt;/font&gt;&lt;/a&gt; more efficiently. In addition, the new infrastructure will allow Google
   to develop more advanced algorithms and larger databases.
&lt;/p&gt;
&lt;/blockquote&gt; &lt;blockquote&gt; 
&lt;p&gt;
   Another reason for the new data center infrastructure is that Google wants to be able
   to index different content types. Google is now testing a new search engine spider
   that is based on the Mozilla browser.
&lt;/p&gt;
&lt;p&gt;
   The new spider should be able to index more than traditional search engine spiders,
   possibly links within images, JavaScripts or Flash files.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
   &lt;b&gt;How can you test how Bigdaddy will affect your rankings? &lt;/b&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
   Some Google data centers that use the new Bigdaddy system are already online. For
   example, if you go to &lt;a href="http://66.249.93.104/" target=_blank&gt;&lt;font color=#0058ee&gt;66.249.93.104&lt;/font&gt;&lt;/a&gt; you
   can test Google's new data center.
&lt;/p&gt;
&lt;p&gt;
   Google even wants your feedback. Click the "&lt;i&gt;Dissatisfied? Help us improve&lt;/i&gt;"
   link at the bottom right of the result page. Enter your feedback and use the keyword &lt;i&gt;bigdaddy&lt;/i&gt; so
   that Google knows that your feedback is about the new data center. 
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
   It's hard to tell how the Bigdaddy update will affect your web page rankings. If you
   have a spam free web site with good content and many incoming links, the update should
   have a positive effect on your Google rankings.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=ebabfb8e-48d7-4e24-b6ca-cecab7ad7238" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=fd7ecdf5-0ccf-42a6-966f-0daef94e5f59</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,fd7ecdf5-0ccf-42a6-966f-0daef94e5f59.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Everyone knows GoDaddy is pushing the multiple year domain registration:
   </p>
        <blockquote>
          <p>
      Google recently filed <a href="http://appft1.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&amp;Sect2=HITOFF&amp;p=1&amp;u=/netahtml/PTO/search-bool.html&amp;r=1&amp;f=G&amp;l=50&amp;co1=AND&amp;d=PG01&amp;s1=20050071741&amp;OS=20050071741&amp;RS=20050071741">United
      States Patent Application 20050071741</a>. As part of that patent application, Google
      made apparent its efforts to wipe out search engine spam, stating:
   </p>
          <p>
      ‘Valuable (legitimate) domains are often paid for several years in advance, while
      doorway (illegitimate) domains rarely are used for more than a year. Therefore, the
      date when a domain expires in the future can be used as a factor in predicting the
      legitimacy of a domain and, thus, the documents associated therewith.”
   </p>
          <p>
      Domains registered for longer periods give the indication, true or not, that their
      owner is legitimate. Google uses a domain’s length of registration when indexing and
      ranking a Web site for inclusion in their organic search results.
   </p>
          <p>
      So to prove to everyone that your site is the real deal, register for more than one
      year and increase your chances of boosting your search ranking on Google.
   </p>
        </blockquote>
        <p>
      I have read the doc beginning to end and honestly this is some of the driest garbage
      since my last RFC reading. The new GoDaddy sales technique, is one of the smartest
      examples of marketing seen from registars in some time. Then I have been around
      long enough to remember when longer domain names came out in 1999. That spawned a
      mad rush for hyphenated domain names that to me never really paid off for people.
      But a lot of domain names were sold.
   </p>
        <p>
      What is described in the patent looks like a "method" rather than a new Google's algorythm
      add-on. As the patent's title implies, it's about a method to retrieve informations
      filtering them on an historical basis. "Google" name NEVER appears in patent contents.
      It seems spammers registers domains for just one year, often providing false admin
      and contact details. Domains registered for more that one year may get a higher score.
      The Patent does not refer to any historical data related to domain age: it seems to
      focus on domain expiration rather than domain creation. Therefore if your domain is
      5 years old, and this would mean you're serious about it, you could even be penalized
      because you renew it yearly. When we all know that either or both can be collected
      at the same time.
   </p>
        <p>
      While Information retrieval based on historical data is (or may be) a great method
      to leave spammers out of the door, there are some indicators Google actually uses
      to catch spammer sites.
   </p>
        <p>
      1. Multiple domains with the same contents. Not uncommon to see many similar websites
      ranking high for certain keywords then disappear from index after a certain period
      of time (usually one month)<br />
      2. Google's ABUSE service. Based on users' input. Users can report a website they
      suspect it's spamming the search engine to Google abuse service. The website will
      be investigated (by a human) and, if it's caught on some spamming activities is banned.<br />
      3. Keyword Stuffing. Pages that present same keyword repeated over and over usually
      rank high for a short period of time then disappear from index. Keyword Stuffing infact
      is considered the most annoying spam practice.<br />
      4. Don't forget the so-called Sandbox effect (read about it on <a href="http://www.googlerank.com/ranking/Ebook/google-sandbox.html" target="_blank">Google
      Sandbox effect</a>)
   </p>
        <p>
      Closing: I would have to question Godaddy scare tactics as a method for sales though
      it is proven to be effective. Logic would say Google would not use any single method
      like this to pollute a algorythm they have worked so hard to develope. If someone
      is registering a fresh domain name for the first time, it might be in their best interest
      to do so for more than one year. Or untill a history is established. Though logic
      would also say the same, to those search spam people after all the gain is great and
      the investment small.
   </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=fd7ecdf5-0ccf-42a6-966f-0daef94e5f59" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>Google Patent and Registrar Market Hype</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,fd7ecdf5-0ccf-42a6-966f-0daef94e5f59.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,fd7ecdf5-0ccf-42a6-966f-0daef94e5f59.aspx</link>
      <pubDate>Thu, 08 Dec 2005 16:15:50 GMT</pubDate>
      <description>&lt;p&gt;
   Everyone knows GoDaddy is pushing the multiple year domain registration:
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
   Google recently filed &lt;a href="http://appft1.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&amp;amp;Sect2=HITOFF&amp;amp;p=1&amp;amp;u=/netahtml/PTO/search-bool.html&amp;amp;r=1&amp;amp;f=G&amp;amp;l=50&amp;amp;co1=AND&amp;amp;d=PG01&amp;amp;s1=20050071741&amp;amp;OS=20050071741&amp;amp;RS=20050071741"&gt;United
   States Patent Application 20050071741&lt;/a&gt;. As part of that patent application, Google
   made apparent its efforts to wipe out search engine spam, stating:
&lt;/p&gt;
&lt;p&gt;
   ‘Valuable (legitimate) domains are often paid for several years in advance, while
   doorway (illegitimate) domains rarely are used for more than a year. Therefore, the
   date when a domain expires in the future can be used as a factor in predicting the
   legitimacy of a domain and, thus, the documents associated therewith.”
&lt;/p&gt;
&lt;p&gt;
   Domains registered for longer periods give the indication, true or not, that their
   owner is legitimate. Google uses a domain’s length of registration when indexing and
   ranking a Web site for inclusion in their organic search results.
&lt;/p&gt;
&lt;p&gt;
   So to prove to everyone that your site is the real deal, register for more than one
   year and increase your chances of boosting your search ranking on Google.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
   I have read the doc beginning to end and honestly this is some of the driest garbage
   since my last RFC reading. The new GoDaddy sales technique,&amp;nbsp;is one of the smartest
   examples of marketing&amp;nbsp;seen from registars in some time. Then I have been around
   long enough to remember when longer domain names came out in 1999. That&amp;nbsp;spawned&amp;nbsp;a
   mad rush for hyphenated domain names that to me never really paid off for people.
   But a lot of domain names were sold.
&lt;/p&gt;
&lt;p&gt;
   What is described in the patent looks like a "method" rather than a new Google's algorythm
   add-on. As the patent's title implies, it's about a method to retrieve informations
   filtering them on an historical basis. "Google" name NEVER appears in patent contents.
   It seems spammers registers domains for just one year, often providing false admin
   and contact details. Domains registered for more that one year may get a higher score.
   The Patent does not refer to any historical data related to domain age: it seems to
   focus on domain expiration rather than domain creation. Therefore if your domain is
   5 years old, and this would mean you're serious about it, you could even be penalized
   because you renew it yearly. When we all know that either or both can be collected
   at the same time.
&lt;/p&gt;
&lt;p&gt;
   While Information retrieval based on historical data is (or may be) a great method
   to leave spammers out of the door, there are some indicators Google actually uses
   to catch spammer sites.
&lt;/p&gt;
&lt;p&gt;
   1. Multiple domains with the same contents. Not uncommon to see many similar websites
   ranking high for certain keywords then disappear from index after a certain period
   of time (usually one month)&lt;br&gt;
   2. Google's ABUSE service. Based on users' input. Users can report a website they
   suspect it's spamming the search engine to Google abuse service. The website will
   be investigated (by a human) and, if it's caught on some spamming activities is banned.&lt;br&gt;
   3. Keyword Stuffing. Pages that present same keyword repeated over and over usually
   rank high for a short period of time then disappear from index. Keyword Stuffing infact
   is considered the most annoying spam practice.&lt;br&gt;
   4. Don't forget the so-called Sandbox effect (read about it on &lt;a href="http://www.googlerank.com/ranking/Ebook/google-sandbox.html" target=_blank&gt;Google
   Sandbox effect&lt;/a&gt;)
&lt;/p&gt;
&lt;p&gt;
   Closing: I would have to question Godaddy scare tactics as a method for sales though
   it is proven to be effective. Logic would say Google would not use any single method
   like this to pollute a algorythm they have worked so hard to develope. If someone
   is registering a fresh domain name for the first time, it might be in their best interest
   to do so for more than one year. Or&amp;nbsp;untill a history is established. Though logic
   would also say the same, to those search spam people after all the gain is great and
   the investment small.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=fd7ecdf5-0ccf-42a6-966f-0daef94e5f59" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=b3583cac-3167-49db-815e-bf48b0225005</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,b3583cac-3167-49db-815e-bf48b0225005.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <p>
          <img src="http://blog.activeservers.com/content/binary/googleBase.gif" border="0" />
        </p>
        <p>
          <font size="2">The new Google Base (beta) service means you can add all types
      of information that they will host and make searchable online. </font>
          <font size="2">Describe
      any item you wish to post with attributes, which will help people find it when
      searching Google Base, which may also be included in the main Google search index
      and other Google products like Froogle and Google Local.</font>
        </p>
        <p>
          <font size="2">Its free and all types of online and offline information and images
      are accepted. Interesting items already posted include non-profit organisations and
      recipes for tikka masala. </font>
        </p>
        <p>
          <font size="2">Google have also set out guidelines for what is prohibited such
      as product endorsing, gambling, illegal goods and hacking. </font>
        </p>
        <p>
      For more information visit: <a href="http://base.google.com/base/default" target="_blank">http://base.google.com/base/default</a></p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=b3583cac-3167-49db-815e-bf48b0225005" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>Google Base</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,b3583cac-3167-49db-815e-bf48b0225005.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,b3583cac-3167-49db-815e-bf48b0225005.aspx</link>
      <pubDate>Thu, 17 Nov 2005 15:15:10 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;img src="http://blog.activeservers.com/content/binary/googleBase.gif" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;font size=2&gt;The new Google Base (beta) service means&amp;nbsp;you can add all types of
   information that&amp;nbsp;they will&amp;nbsp;host and make searchable online. &lt;/font&gt;&lt;font size=2&gt;Describe
   any item you wish to&amp;nbsp;post with attributes, which will help people find it when
   searching Google Base, which may also be included in the main Google search index
   and other Google products like Froogle and Google Local.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;font size=2&gt;Its free and all types of online and offline information and images are
   accepted. Interesting items already posted include non-profit organisations and recipes
   for tikka masala. &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;font size=2&gt;Google have also set out&amp;nbsp;guidelines for what is prohibited such
   as product endorsing, gambling, illegal goods&amp;nbsp;and hacking. &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   For more information visit: &lt;a href="http://base.google.com/base/default" target=_blank&gt;http://base.google.com/base/default&lt;/a&gt; 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=b3583cac-3167-49db-815e-bf48b0225005" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=a8fb6bc4-febd-4711-981d-16786a96ff74</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,a8fb6bc4-febd-4711-981d-16786a96ff74.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      A 301 permanent redirect is the redirection method recommended by the major search
      engines. Using a 301 redirect you are in effect telling the search engines the page
      has moved and to update their index. It also has the nice side benefit of redirecting
      the benefit of inbound links to the new page. 
   </p>
        <p>
      Implementing a 301 permanent redirect is different depending on the operating system
      and/or programming language you are using on your server:
   </p>
        <p>
          <strong>
            <font color="#000080">
              <font color="#006400">IIS Redirect</font>
              <br />
            </font>
          </strong>In internet services manager, right click on /old-file.htm 
      <br />
      Select the radio titled "a redirection to a URL". 
      <br />
      Enter the redirection page. 
      <br />
      Check "The exact url entered above" and the "A permanent redirection for this resource" 
      <br />
      Click on 'Apply' 
      <br /><font color="#006400"><strong>Apache Redirect</strong><br /></font>Create a file called .htaccess in your root directory and add the following
      line: 
   </p>
        <p>
      Redirect 301 /current.htm <a href="http://www.domainname.com/blabla.htm">http://www.domainname.com/blabla.htm</a><br /><font color="#006400"><strong>ColdFusion Redirect</strong><br /></font>Edit the file /current.htm and put the following code:
   </p>
        <p>
      &lt;cfheader statuscode="301" statustext="Moved permanently"&gt;<br />
      &lt;cfheader name="Location" value="<a href="http://www.domainname.com/blabla.htm">http://www.domainname.com/blabla.htm</a>"&gt; 
   </p>
        <p>
          <font color="#006400">
            <strong>PHP Redirect 
      <br /></strong>
          </font>Edit the file /current.htm and put the following code:
   </p>
        <p>
      &lt;?php<br />
      Header( "HTTP/1.1 301 Moved Permanently" ); 
      <br />
      Header( "Location: <a href="http://www.domainname.com/blabla.htm">http://www.domainname.com/blabla.htm</a>"
      );<br />
      ?&gt; 
      <br /><strong><font color="#006400">ASP Redirect 
      <br /></font></strong>Edit the file /current.htm and put the following code:
   </p>
        <p>
      &lt;%@ Language=VBScript %&gt;<br />
      &lt;% 
      <br />
      Response.Status="301 Moved Permanently" 
      <br />
      Response.AddHeader "Location", " <a href="http://www.domainname.com/blabla.htm">http://www.domainname.com/blabla.htm</a>" 
      <br />
      %&gt; 
      <br /><font color="#006400"><strong>ASP .NET Redirect</strong></font><br />
      Edit the file /current.htm and put the following code:
   </p>
        <p>
      &lt;script runat="server"&gt;<br />
      private void Page_Load(object sender, System.EventArgs e) {<br />
      Response.Status = "301 Moved Permanently";<br />
      Response.AddHeader("Location","<a href="http://www.domainname.com/blabla.htm">http://www.domainname.com/blabla.htm</a>"); 
      <br />
      }<br />
      &lt;/script&gt; 
      <br /><font color="#006400"><strong>HTML Redirect</strong></font><br />
      Edit the file /current.htm and put the following code:
   </p>
        <p>
      &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;<br />
      &lt;html&gt;<br />
      &lt;head&gt;<br />
      &lt;title&gt;Your Page Title&lt;/title&gt;<br />
      &lt;meta http-equiv="REFRESH" content="0;url=http://www.domainname.com/blabla.htm"&gt;<br />
      &lt;/HEAD&gt;<br />
      &lt;BODY&gt;Optional page text here.
   </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=a8fb6bc4-febd-4711-981d-16786a96ff74" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>301 redirect</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,a8fb6bc4-febd-4711-981d-16786a96ff74.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,a8fb6bc4-febd-4711-981d-16786a96ff74.aspx</link>
      <pubDate>Sun, 06 Nov 2005 21:39:39 GMT</pubDate>
      <description>&lt;p&gt;
   A 301 permanent redirect is the redirection method recommended by the major search
   engines. Using a 301 redirect you are in effect telling the search engines the page
   has moved and to update their index. It also has the nice side benefit of redirecting
   the benefit of inbound links to the new page. 
&lt;/p&gt;
&lt;p&gt;
   Implementing a 301 permanent redirect is different depending on the operating system
   and/or programming language you are using on your server:
&lt;/p&gt;
&lt;p&gt;
   &lt;strong&gt;&lt;font color=#000080&gt;&lt;font color=#006400&gt;IIS Redirect&lt;/font&gt;
   &lt;br&gt;
   &lt;/font&gt;&lt;/strong&gt;In internet services manager, right click on /old-file.htm 
   &lt;br&gt;
   Select the radio titled "a redirection to a URL". 
   &lt;br&gt;
   Enter the redirection page. 
   &lt;br&gt;
   Check "The exact url entered above" and the "A permanent redirection for this resource" 
   &lt;br&gt;
   Click on 'Apply' 
   &lt;br&gt;
   &lt;font color=#006400&gt;&lt;strong&gt;Apache Redirect&lt;/strong&gt; 
   &lt;br&gt;
   &lt;/font&gt;Create a file called .htaccess in your root directory and add the following
   line: 
&lt;/p&gt;
&lt;p&gt;
   Redirect 301 /current.htm &lt;a href="http://www.domainname.com/blabla.htm"&gt;http://www.domainname.com/blabla.htm&lt;/a&gt; 
   &lt;br&gt;
   &lt;font color=#006400&gt;&lt;strong&gt;ColdFusion Redirect&lt;/strong&gt; 
   &lt;br&gt;
   &lt;/font&gt;Edit the file /current.htm and put the following code:
&lt;/p&gt;
&lt;p&gt;
   &amp;lt;cfheader statuscode="301" statustext="Moved permanently"&amp;gt;&lt;br&gt;
   &amp;lt;cfheader name="Location" value="&lt;a href="http://www.domainname.com/blabla.htm"&gt;http://www.domainname.com/blabla.htm&lt;/a&gt;"&amp;gt; 
&lt;/p&gt;
&lt;p&gt;
   &lt;font color=#006400&gt;&lt;strong&gt;PHP Redirect 
   &lt;br&gt;
   &lt;/strong&gt;&lt;/font&gt;Edit the file /current.htm and put the following code:
&lt;/p&gt;
&lt;p&gt;
   &amp;lt;?php&lt;br&gt;
   Header( "HTTP/1.1 301 Moved Permanently" ); 
   &lt;br&gt;
   Header( "Location: &lt;a href="http://www.domainname.com/blabla.htm"&gt;http://www.domainname.com/blabla.htm&lt;/a&gt;"
   );&lt;br&gt;
   ?&amp;gt; 
   &lt;br&gt;
   &lt;strong&gt;&lt;font color=#006400&gt;ASP Redirect 
   &lt;br&gt;
   &lt;/font&gt;&lt;/strong&gt;Edit the file /current.htm and put the following code:
&lt;/p&gt;
&lt;p&gt;
   &amp;lt;%@ Language=VBScript %&amp;gt;&lt;br&gt;
   &amp;lt;% 
   &lt;br&gt;
   Response.Status="301 Moved Permanently" 
   &lt;br&gt;
   Response.AddHeader "Location", " &lt;a href="http://www.domainname.com/blabla.htm"&gt;http://www.domainname.com/blabla.htm&lt;/a&gt;" 
   &lt;br&gt;
   %&amp;gt; 
   &lt;br&gt;
   &lt;font color=#006400&gt;&lt;strong&gt;ASP .NET Redirect&lt;/strong&gt;&lt;/font&gt; 
   &lt;br&gt;
   Edit the file /current.htm and put the following code:
&lt;/p&gt;
&lt;p&gt;
   &amp;lt;script runat="server"&amp;gt;&lt;br&gt;
   private void Page_Load(object sender, System.EventArgs e) {&lt;br&gt;
   Response.Status = "301 Moved Permanently";&lt;br&gt;
   Response.AddHeader("Location","&lt;a href="http://www.domainname.com/blabla.htm"&gt;http://www.domainname.com/blabla.htm&lt;/a&gt;"); 
   &lt;br&gt;
   }&lt;br&gt;
   &amp;lt;/script&amp;gt; 
   &lt;br&gt;
   &lt;font color=#006400&gt;&lt;strong&gt;HTML Redirect&lt;/strong&gt;&lt;/font&gt; 
   &lt;br&gt;
   Edit the file /current.htm and put the following code:
&lt;/p&gt;
&lt;p&gt;
   &amp;lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&amp;gt;&lt;br&gt;
   &amp;lt;html&amp;gt;&lt;br&gt;
   &amp;lt;head&amp;gt;&lt;br&gt;
   &amp;lt;title&amp;gt;Your Page Title&amp;lt;/title&amp;gt;&lt;br&gt;
   &amp;lt;meta http-equiv="REFRESH" content="0;url=http://www.domainname.com/blabla.htm"&amp;gt;&lt;br&gt;
   &amp;lt;/HEAD&amp;gt;&lt;br&gt;
   &amp;lt;BODY&amp;gt;Optional page text here.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=a8fb6bc4-febd-4711-981d-16786a96ff74" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=b9562f40-3bb5-447b-8693-bcbe27edee28</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,b9562f40-3bb5-447b-8693-bcbe27edee28.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <strong>
            <font face="Tahoma" color="#808080">MSN Launches Paid-Search Service in France
      and Singapore</font>
          </strong>
        </p>
        <p>
          <font face="Tahoma">
            <b>NEW YORK — Sept. 26, 2005 —</b> Today, Yusuf Mehdi, senior
      vice president of the MSN<sup>®</sup> Information Services &amp; Merchant Platform
      division, opened the second annual Advertising Week 2005 in New York City by announcing
      the official launch of adCenter in France and Singapore. adCenter powers a paid-search
      service from MSN that provides advanced audience intelligence and targeting capabilities
      to help advertisers improve their return on investment when it comes to paid-search
      advertising.</font>
        </p>
        <p>
          <font face="Tahoma">The official launch of adCenter in France today and Singapore
      on Aug. 31 follows successful pilot programs in both countries. U.S. testing of adCenter
      is set to begin in October.</font>
        </p>
        <p>
          <font face="Tahoma">“adCenter is helping us apply more flexibility and control in
      our paid-search advertising campaigns because it gives us the tools to learn so much
      more about the kind of people who are searching on MSN,” said Stuart Larkins, vice
      president of Search for Performics Inc., a division of DoubleClick Inc., which participated
      in the test. </font>
        </p>
        <p>
          <font face="Tahoma">Powerful campaign management tools and deep audience intelligence
      unique to MSN make it easy for advertisers to optimize and refine their campaigns
      to reach a specific audience. Some of those tools include the following:</font>
        </p>
        <p>
          <table cellspacing="0" cellpadding="0" border="0">
            <tbody>
              <tr>
                <td class="listBullet" valign="top">
                  <font face="Tahoma" size="2">•</font>
                </td>
                <td class="listItem">
                  <p>
                    <font face="Tahoma">
                      <font size="2">
                        <b>Keyword Selection</b> allows advertisers to
                     indicate whom they want to reach based on geographic location, gender, age range,
                     time of day and day of week, and suggests keywords based on the desired audience.</font>
                    </font>
                  </p>
                </td>
              </tr>
              <tr>
                <td class="listBullet" valign="top">
                  <font face="Tahoma" size="2">•</font>
                </td>
                <td class="listItem">
                  <p>
                    <font face="Tahoma">
                      <font size="2">
                        <b>Site Analyzer</b> assists advertisers by suggesting
                     keywords based on the content of their Web site, rather than on another keyword.</font>
                    </font>
                  </p>
                </td>
              </tr>
              <tr>
                <td class="listBullet" valign="top">
                  <font face="Tahoma" size="2">•</font>
                </td>
                <td class="listItem">
                  <p>
                    <font face="Tahoma">
                      <font size="2">
                        <b>Audience Profiler</b> provides advertisers with
                     an expected profile of those customers who are most likely to search for specific
                     keywords.</font>
                    </font>
                  </p>
                </td>
              </tr>
              <tr>
                <td class="listBullet" valign="top">
                  <font face="Tahoma" size="2">•</font>
                </td>
                <td class="listItem">
                  <p>
                    <font face="Tahoma">
                      <font size="2">
                        <b>Cost Estimator</b> helps advertisers remain
                     within their budget by estimating rank, traffic and cost per month per keyword.</font>
                    </font>
                  </p>
                </td>
              </tr>
              <tr>
                <td class="listBullet" valign="top">
                  <font face="Tahoma" size="2">•</font>
                </td>
                <td class="listItem">
                  <p>
                    <font face="Tahoma">
                      <font size="2">
                        <b>Campaign Optimization</b> allows advertisers
                     to respond quickly and decisively throughout the campaign to easily refine budget
                     allocations and keywords, as well as apply targeting filters such as geographic, demographic
                     and dayparting.</font>
                    </font>
                  </p>
                </td>
              </tr>
              <tr>
                <td class="listBullet" valign="top">
                  <font face="Tahoma" size="2">•</font>
                </td>
                <td class="listItem">
                  <p>
                    <font face="Tahoma">
                      <font size="2">
                        <b>Post Sales Audience Intelligence &amp; Reporting</b> provides
                     advertisers with detailed reports on campaign performance and audiences reached including
                     click-through rate, estimated position and spending levels.</font>
                    </font>
                  </p>
                  <p>
                    <font face="Tahoma" size="2">In the near future, adCenter will become a one-stop shop
                     from which advertisers can manage all their MSN advertising campaigns, end to end,
                     including display and direct ads. In addition, advertisers will be able to use advanced
                     targeting tools and audience intelligence data to reach their desired audiences across
                     the MSN network. Advertisers interested in learning more or signing up for adCenter
                     can go to </font>
                    <a href="http://advertising.msn.com/" target="_blank">
                      <font face="Tahoma" size="2">http://advertising.msn.com</font>
                    </a>
                    <font face="Tahoma" size="2">. </font>
                  </p>
                </td>
              </tr>
            </tbody>
          </table>
        </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=b9562f40-3bb5-447b-8693-bcbe27edee28" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>MSN Launches Paid-Search Service</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,b9562f40-3bb5-447b-8693-bcbe27edee28.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,b9562f40-3bb5-447b-8693-bcbe27edee28.aspx</link>
      <pubDate>Mon, 26 Sep 2005 12:01:54 GMT</pubDate>
      <description>&lt;p&gt;
   &lt;strong&gt;&lt;font face=Tahoma color=#808080&gt;MSN Launches Paid-Search Service in France
   and Singapore&lt;/font&gt;&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;font face=Tahoma&gt;&lt;b&gt;NEW YORK — Sept. 26, 2005 —&lt;/b&gt; Today, Yusuf Mehdi, senior vice
   president of the MSN&lt;sup&gt;®&lt;/sup&gt; Information Services &amp;amp; Merchant Platform division,
   opened the second annual Advertising Week 2005 in New York City by announcing the
   official launch of adCenter in France and Singapore. adCenter powers a paid-search
   service from MSN that provides advanced audience intelligence and targeting capabilities
   to help advertisers improve their return on investment when it comes to paid-search
   advertising.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;font face=Tahoma&gt;The official launch of adCenter in France today and Singapore on
   Aug. 31 follows successful pilot programs in both countries. U.S. testing of adCenter
   is set to begin in October.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;font face=Tahoma&gt;“adCenter is helping us apply more flexibility and control in our
   paid-search advertising campaigns because it gives us the tools to learn so much more
   about the kind of people who are searching on MSN,” said Stuart Larkins, vice president
   of Search for Performics Inc., a division of DoubleClick Inc., which participated
   in the test. &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;font face=Tahoma&gt;Powerful campaign management tools and deep audience intelligence
   unique to MSN make it easy for advertisers to optimize and refine their campaigns
   to reach a specific audience. Some of those tools include the following:&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;table cellspacing=0 cellpadding=0 border=0&gt;
      &lt;tbody&gt;
         &lt;tr&gt;
            &lt;td class=listBullet valign=top&gt;
               &lt;font face=Tahoma size=2&gt;•&lt;/font&gt;&lt;/td&gt;
            &lt;td class=listItem&gt;
               &lt;p&gt;
                  &lt;font face=Tahoma&gt;&lt;font size=2&gt;&lt;b&gt;Keyword Selection&lt;/b&gt; allows advertisers to indicate
                  whom they want to reach based on geographic location, gender, age range, time of day
                  and day of week, and suggests keywords based on the desired audience.&lt;/font&gt;&lt;/font&gt;
               &lt;/p&gt;
            &lt;/td&gt;
         &lt;/tr&gt;
         &lt;tr&gt;
            &lt;td class=listBullet valign=top&gt;
               &lt;font face=Tahoma size=2&gt;•&lt;/font&gt;&lt;/td&gt;
            &lt;td class=listItem&gt;
               &lt;p&gt;
                  &lt;font face=Tahoma&gt;&lt;font size=2&gt;&lt;b&gt;Site Analyzer&lt;/b&gt; assists advertisers by suggesting
                  keywords based on the content of their Web site, rather than on another keyword.&lt;/font&gt;&lt;/font&gt;
               &lt;/p&gt;
            &lt;/td&gt;
         &lt;/tr&gt;
         &lt;tr&gt;
            &lt;td class=listBullet valign=top&gt;
               &lt;font face=Tahoma size=2&gt;•&lt;/font&gt;&lt;/td&gt;
            &lt;td class=listItem&gt;
               &lt;p&gt;
                  &lt;font face=Tahoma&gt;&lt;font size=2&gt;&lt;b&gt;Audience Profiler&lt;/b&gt; provides advertisers with
                  an expected profile of those customers who are most likely to search for specific
                  keywords.&lt;/font&gt;&lt;/font&gt;
               &lt;/p&gt;
            &lt;/td&gt;
         &lt;/tr&gt;
         &lt;tr&gt;
            &lt;td class=listBullet valign=top&gt;
               &lt;font face=Tahoma size=2&gt;•&lt;/font&gt;&lt;/td&gt;
            &lt;td class=listItem&gt;
               &lt;p&gt;
                  &lt;font face=Tahoma&gt;&lt;font size=2&gt;&lt;b&gt;Cost Estimator&lt;/b&gt; helps advertisers remain within
                  their budget by estimating rank, traffic and cost per month per keyword.&lt;/font&gt;&lt;/font&gt;
               &lt;/p&gt;
            &lt;/td&gt;
         &lt;/tr&gt;
         &lt;tr&gt;
            &lt;td class=listBullet valign=top&gt;
               &lt;font face=Tahoma size=2&gt;•&lt;/font&gt;&lt;/td&gt;
            &lt;td class=listItem&gt;
               &lt;p&gt;
                  &lt;font face=Tahoma&gt;&lt;font size=2&gt;&lt;b&gt;Campaign Optimization&lt;/b&gt; allows advertisers to
                  respond quickly and decisively throughout the campaign to easily refine budget allocations
                  and keywords, as well as apply targeting filters such as geographic, demographic and
                  dayparting.&lt;/font&gt;&lt;/font&gt;
               &lt;/p&gt;
            &lt;/td&gt;
         &lt;/tr&gt;
         &lt;tr&gt;
            &lt;td class=listBullet valign=top&gt;
               &lt;font face=Tahoma size=2&gt;•&lt;/font&gt;&lt;/td&gt;
            &lt;td class=listItem&gt;
               &lt;p&gt;
                  &lt;font face=Tahoma&gt;&lt;font size=2&gt;&lt;b&gt;Post Sales Audience Intelligence &amp;amp; Reporting&lt;/b&gt; provides
                  advertisers with detailed reports on campaign performance and audiences reached including
                  click-through rate, estimated position and spending levels.&lt;/font&gt;&lt;/font&gt;
               &lt;/p&gt;
               &lt;p&gt;
                  &lt;font face=Tahoma size=2&gt;In the near future, adCenter will become a one-stop shop
                  from which advertisers can manage all their MSN advertising campaigns, end to end,
                  including display and direct ads. In addition, advertisers will be able to use advanced
                  targeting tools and audience intelligence data to reach their desired audiences across
                  the MSN network. Advertisers interested in learning more or signing up for adCenter
                  can go to &lt;/font&gt;&lt;a href="http://advertising.msn.com/" target=_blank&gt;&lt;font face=Tahoma size=2&gt;http://advertising.msn.com&lt;/font&gt;&lt;/a&gt;&lt;font face=Tahoma size=2&gt;. &lt;/font&gt;
               &lt;/p&gt;
            &lt;/td&gt;
         &lt;/tr&gt;
      &lt;/tbody&gt;
   &lt;/table&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=b9562f40-3bb5-447b-8693-bcbe27edee28" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=5a672642-cd13-4267-b209-97286ded5577</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,5a672642-cd13-4267-b209-97286ded5577.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <title>Google UnSafeSearch</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,5a672642-cd13-4267-b209-97286ded5577.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,5a672642-cd13-4267-b209-97286ded5577.aspx</link>
      <pubDate>Mon, 12 Sep 2005 15:16:23 GMT</pubDate>
      <description>&lt;p&gt;
   &lt;strong&gt;&lt;font size=3&gt;&lt;a href="http://strix.org.uk/misc/adult.google/index.php? target=_blank&gt;Google UnSafeSearch&lt;/A&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;Google, like most major search engines, provides a filtering mechanism to remove results from their searches that may offend uptight or insecure people. Strong language, porn and such. What they don't do, however, is provide a way to view &lt;I&gt;only&lt;/I&gt; that content which is deemed unfit for family audiences. Enter UnSafeSearch, this page will do a search on google both with and without SafeSearch(tm), and return only those results SafeSearch removes.&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=5a672642-cd13-4267-b209-97286ded5577"/&gt;
   &lt;br /&gt;
   &lt;hr /&gt;
   ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=5d0267b5-62d0-4821-ada0-aea5ee9d7423</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,5d0267b5-62d0-4821-ada0-aea5ee9d7423.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Lets use this example of anchor text: 
   </p>
        <p>
      You run a web design site, and that you want it to rank high with the search
      engines for the search term "web design". If you had 100 links pointing to your homepage,
      and the anchor text of all of them said "click here". This wouldn't tell the
      search engines a whole lot about your site. The search engines will not give you a
      good ranking. 
      <br /><br />
      However, if instead of <a href="http://domainname.com/" target="_blank">"click here"</a>,
      the anchor text on those links said <a title="&quot;Web Design&quot;" href="http://domainname.com/" target="_blank">"web
      design"</a>, the search engines would easily conclude that your site is an authority
      on web design, and will give your site a high ranking. 
   </p>
        <p>
      Adding a bullet can give you yet another kick in position. <a href="http://domainname.com/" target="_blank"><img alt="&quot;Web Design&quot;" src="http://blog.activeservers.com/content/binary/arrow.gif" border="0" /></a> <a title="Web Design" href="http://domainname.com/" target="_blank">"Web
      Design"</a> Doing this you can add image alt tag to the link as well as anchor
      text.
   </p>
        <p>
      Example of Anchor Text:<br />
      &lt;a href="<a href="http://blog.activeservers.com/SEO/">http://blog.activeservers.com/SEO/</a>"
      title="Internet SEO Articles"&gt;Articles&lt;/a&gt; 
   </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=5d0267b5-62d0-4821-ada0-aea5ee9d7423" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>Anchor Text and Alt Tags</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,5d0267b5-62d0-4821-ada0-aea5ee9d7423.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,5d0267b5-62d0-4821-ada0-aea5ee9d7423.aspx</link>
      <pubDate>Sun, 11 Sep 2005 14:33:08 GMT</pubDate>
      <description>&lt;p&gt;
   Lets use this example of anchor text: 
&lt;/p&gt;
&lt;p&gt;
   You run a web design site, and that you want it to rank&amp;nbsp;high with the search
   engines for the search term "web design". If you had 100 links pointing to your homepage,
   and the anchor text of all of them said "click here".&amp;nbsp;This wouldn't tell the
   search engines a whole lot about your site. The search engines will not give you a
   good ranking. 
   &lt;br&gt;
   &lt;br&gt;
   However, if instead of &lt;a href="http://domainname.com/" target=_blank&gt;"click here"&lt;/a&gt;,
   the anchor text on those links said &lt;a title='"Web Design"' href="http://domainname.com/" target=_blank&gt;"web
   design"&lt;/a&gt;, the search engines would easily conclude that your site is an authority
   on web design, and will give your site a high ranking. 
&lt;/p&gt;
&lt;p&gt;
   Adding a bullet can give you yet another kick in position. &lt;a href="http://domainname.com/" target=_blank&gt;&lt;img alt='"Web Design"' src="http://blog.activeservers.com/content/binary/arrow.gif" border=0&gt;&lt;/a&gt;&amp;nbsp;&lt;a title="Web Design" href="http://domainname.com/" target=_blank&gt;"Web
   Design"&lt;/a&gt;&amp;nbsp;Doing this you can add image alt tag to the link as well as anchor
   text.
&lt;/p&gt;
&lt;p&gt;
   Example of Anchor Text:&lt;br&gt;
   &amp;lt;a href="&lt;a href="http://blog.activeservers.com/SEO/"&gt;http://blog.activeservers.com/SEO/&lt;/a&gt;"
   title="Internet SEO Articles"&amp;gt;Articles&amp;lt;/a&amp;gt; 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=5d0267b5-62d0-4821-ada0-aea5ee9d7423" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=06da25ee-fb51-4ec3-9639-060cc4d66ce1</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,06da25ee-fb51-4ec3-9639-060cc4d66ce1.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      While blogs arguably make up the majority of RSS content, many news sites also syndicate
      content via RSS—for example, Search Engine Watch is <a href="http://searchenginewatch.com/about/article.php/2155721#feeds" target="_blank">available
      via RSS</a> feeds.
   </p>
        <p>
      But RSS feeds are increasingly being used for other types of content. For example,
      you can get RSS feeds with <a href="http://www.rssweather.com/dir/" target="_blank">weather
      forecasts</a>, <a href="http://biz.yahoo.com/rss.html" target="_blank">company news
      and financial information</a>, <a href="http://www.simpletracking.com/" target="_blank">package
      tracking</a> and lots of others. Even the venerable <a href="http://dir.yahoo.com/rss/dir/index.php" target="_blank">Yahoo
      Directory</a> is available now through RSS feeds.
   </p>
        <p>
      Although there are literally millions of feeds available, finding those that are appealing
      and relevant to you isn't always easy. The major search engines are all dabbling with
      feed search, but none offer a robust service as yet. And while there are a number
      of smaller, specialized blog and feed search engines, their lack of resources and
      the problem of blog and feed spam means their search results are often useless. So
      finding relevant feeds, at least for the time-being, often remains a hit-or-miss affair.
   </p>
        <p>
          <a href="http://searchenginewatch.com/searchday/article.php/3531191" target="_blank">"Full article
      here"</a>
        </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=06da25ee-fb51-4ec3-9639-060cc4d66ce1" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>RSS</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,06da25ee-fb51-4ec3-9639-060cc4d66ce1.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,06da25ee-fb51-4ec3-9639-060cc4d66ce1.aspx</link>
      <pubDate>Mon, 05 Sep 2005 18:52:02 GMT</pubDate>
      <description>&lt;p&gt;
   While blogs arguably make up the majority of RSS content, many news sites also syndicate
   content via RSS—for example, Search Engine Watch is &lt;a href="http://searchenginewatch.com/about/article.php/2155721#feeds" target=_blank&gt;available
   via RSS&lt;/a&gt; feeds.
&lt;/p&gt;
&lt;p&gt;
   But RSS feeds are increasingly being used for other types of content. For example,
   you can get RSS feeds with &lt;a href="http://www.rssweather.com/dir/" target=_blank&gt;weather
   forecasts&lt;/a&gt;, &lt;a href="http://biz.yahoo.com/rss.html" target=_blank&gt;company news
   and financial information&lt;/a&gt;, &lt;a href="http://www.simpletracking.com/" target=_blank&gt;package
   tracking&lt;/a&gt; and lots of others. Even the venerable &lt;a href="http://dir.yahoo.com/rss/dir/index.php" target=_blank&gt;Yahoo
   Directory&lt;/a&gt; is available now through RSS feeds.
&lt;/p&gt;
&lt;p&gt;
   Although there are literally millions of feeds available, finding those that are appealing
   and relevant to you isn't always easy. The major search engines are all dabbling with
   feed search, but none offer a robust service as yet. And while there are a number
   of smaller, specialized blog and feed search engines, their lack of resources and
   the problem of blog and feed spam means their search results are often useless. So
   finding relevant feeds, at least for the time-being, often remains a hit-or-miss affair.
&lt;/p&gt;
&lt;p&gt;
   &lt;a href="http://searchenginewatch.com/searchday/article.php/3531191" target=_blank&gt;"Full&amp;nbsp;article
   here"&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=06da25ee-fb51-4ec3-9639-060cc4d66ce1" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=07d8c478-16bd-48fd-acfb-4c2f53410cd9</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,07d8c478-16bd-48fd-acfb-4c2f53410cd9.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <strong>Google penalizes page rank when content is duplicated by other sites</strong>
        </p>
        <p>
      Have your rankings slipped? It is possible that your page contents have
      been duplicated causing a duplicate content penalty. Google doesn't want multiple
      copies of the same content. So they will devalue all but one of the copies of the
      content based on the age of the page.
   </p>
        <p>
      It has been a chore to check for duplicated content. This chore is easier now - <a href="http://www.copyscape.com/" target="_blank">www.copyscape.com</a>.
      Just by entering the URL of the page you want to check, Copyscape will return a list
      of pages in the Google index that contain text also present on your site.
   </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=07d8c478-16bd-48fd-acfb-4c2f53410cd9" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>Checking For Duplicate Content</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,07d8c478-16bd-48fd-acfb-4c2f53410cd9.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,07d8c478-16bd-48fd-acfb-4c2f53410cd9.aspx</link>
      <pubDate>Mon, 05 Sep 2005 18:43:50 GMT</pubDate>
      <description>&lt;p&gt;
   &lt;strong&gt;Google penalizes page rank when content is duplicated by other sites&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
   Have your rankings slipped?&amp;nbsp;It is&amp;nbsp;possible that your page contents have
   been duplicated causing a duplicate content penalty. Google doesn't want multiple
   copies of the same content. So they will devalue all but one of the copies of the
   content based on the age of the page.
&lt;/p&gt;
&lt;p&gt;
   It has been a&amp;nbsp;chore to check for duplicated content. This chore is easier now&amp;nbsp;- &lt;a href="http://www.copyscape.com/" target=_blank&gt;www.copyscape.com&lt;/a&gt;.
   Just by entering the URL of the page you want to check, Copyscape will return a list
   of pages in the Google index that contain text also present on your site.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=07d8c478-16bd-48fd-acfb-4c2f53410cd9" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=4cd5a02c-d252-4e2e-b6b9-6cef15f8b78e</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,4cd5a02c-d252-4e2e-b6b9-6cef15f8b78e.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <font face="Tahoma" size="2">
            <b>
              <a href="http://publications.mediapost.com/index.cfm?fuseaction=Articles.san&amp;s=33354&amp;Nid=15086&amp;p=294184" target="_blank">Google,
      Yahoo! still dominate search; MSN gains ground</a>
            </b>
          </font>
        </p>
        <blockquote>
          <p>
            <font face="Tahoma" size="2">"Google maintained its lead in the United States with
      36.5 percent of all the searches in the month of July--followed by Yahoo! at 30.5
      percent and MSN at 15.5 percent [...]</font>
          </p>
          <p>
            <font face="Tahoma" size="2">Microsoft's MSN earned the greatest search volume gain
      among any of the top search engines, rising 30 percent year-over-year and accounting
      for 744 million domestic searches."</font>
          </p>
        </blockquote>
        <p>
          <font face="Tahoma" size="2">
            <b>
              <a href="http://www.boingboing.net/2005/08/22/google_stealthily_mo.html" target="_blank">Google
      stealthily monitoring clickthroughs from search-results</a>
            </b>
          </font>
        </p>
        <blockquote>
          <p>
            <font face="Tahoma" size="2">"There's some very subtle clickthrough tracking going
      on at Google. Just before you click on a link on a search-results page, at the 'on
      mousedown' event, Google rewrites the links in its search results with a long redirector
      URL that is presumably being used to track which search results are being selected
      most often."</font>
          </p>
        </blockquote>
        <p>
          <font face="Tahoma" size="2">
            <b>
              <a href="http://www.clickz.com/experts/search/strat/article.php/3528231" target="_blank">Google
      ad display increases</a>
            </b>
          </font>
        </p>
        <blockquote>
          <p>
            <font face="Tahoma" size="2">"In more searches, particularly queries with commercial
      intent, Google now displays three paid PPC links instead of the traditional one or
      two."</font>
          </p>
        </blockquote>
        <p>
          <font face="Tahoma" size="2">
            <b>
              <a href="http://googleblog.blogspot.com/2005/08/courts-signal-that-googles-keyword.html" target="_blank">Courts
      signal that Google's keyword policy is lawful
      </a>
            </b>
          </font>
        </p>
        <blockquote>
          <p>
            <font face="Tahoma" size="2">"We believe our current policy strikes a good balance
      between advertisers, users and trademark owners, don't be surprised if our policy
      evolves over time. We believe it is possible for an advertiser to create an ad that
      uses a trademark in a legal and non-confusing way - after all that is what comparative
      advertising is all about."</font>
          </p>
        </blockquote>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=4cd5a02c-d252-4e2e-b6b9-6cef15f8b78e" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>Google SEO Tips</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,4cd5a02c-d252-4e2e-b6b9-6cef15f8b78e.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,4cd5a02c-d252-4e2e-b6b9-6cef15f8b78e.aspx</link>
      <pubDate>Mon, 29 Aug 2005 02:58:07 GMT</pubDate>
      <description>&lt;p&gt;
   &lt;font face=Tahoma size=2&gt;&lt;b&gt;&lt;a href="http://publications.mediapost.com/index.cfm?fuseaction=Articles.san&amp;amp;s=33354&amp;amp;Nid=15086&amp;amp;p=294184" target=_blank&gt;Google,
   Yahoo! still dominate search; MSN gains ground&lt;/a&gt;&lt;/b&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
   &lt;font face=Tahoma size=2&gt;"Google maintained its lead in the United States with 36.5
   percent of all the searches in the month of July--followed by Yahoo! at 30.5 percent
   and MSN at 15.5 percent [...]&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;font face=Tahoma size=2&gt;Microsoft's MSN earned the greatest search volume gain among
   any of the top search engines, rising 30 percent year-over-year and accounting for
   744 million domestic searches."&lt;/font&gt;
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
   &lt;font face=Tahoma size=2&gt;&lt;b&gt;&lt;a href="http://www.boingboing.net/2005/08/22/google_stealthily_mo.html" target=_blank&gt;Google
   stealthily monitoring clickthroughs from search-results&lt;/a&gt;&lt;/b&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
   &lt;font face=Tahoma size=2&gt;"There's some very subtle clickthrough tracking going on
   at Google. Just before you click on a link on a search-results page, at the 'on mousedown'
   event, Google rewrites the links in its search results with a long redirector URL
   that is presumably being used to track which search results are being selected most
   often."&lt;/font&gt;
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
   &lt;font face=Tahoma size=2&gt;&lt;b&gt;&lt;a href="http://www.clickz.com/experts/search/strat/article.php/3528231" target=_blank&gt;Google
   ad display increases&lt;/a&gt;&lt;/b&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
   &lt;font face=Tahoma size=2&gt;"In more searches, particularly queries with commercial intent,
   Google now displays three paid PPC links instead of the traditional one or two."&lt;/font&gt;
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
   &lt;font face=Tahoma size=2&gt;&lt;b&gt;&lt;a href="http://googleblog.blogspot.com/2005/08/courts-signal-that-googles-keyword.html" target=_blank&gt;Courts
   signal that Google's keyword policy is lawful
   &lt;/b&gt;&gt;&lt;/font&gt; &lt;blockquote&gt; 
&lt;p&gt;
   &lt;font face=Tahoma size=2&gt;"We believe our current policy strikes a good balance between
   advertisers, users and trademark owners, don't be surprised if our policy evolves
   over time. We believe it is possible for an advertiser to create an ad that uses a
   trademark in a legal and non-confusing way - after all that is what comparative advertising
   is all about."&lt;/font&gt;
&lt;/p&gt;
&lt;/blockquote&gt;&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=4cd5a02c-d252-4e2e-b6b9-6cef15f8b78e" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=87fece7f-98e2-4c62-94cc-4de12c98383b</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,87fece7f-98e2-4c62-94cc-4de12c98383b.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <font face="Tahoma">There are many unique terms associated with </font>
          <a href="http://seo.zunch.com/" target="_blank">
            <font face="Tahoma">search
      engine optimization</font>
          </a>
          <font face="Tahoma"> and </font>
          <a href="http://seo.zunch.com/" target="_blank">
            <font face="Tahoma">search
      engine marketing</font>
          </a>
          <font face="Tahoma">. Keyword Effectiveness </font>
          <a href="http://seo.zunch.com/term-Index_22.htm" target="_blank">
            <font face="Tahoma">Index</font>
          </a>
          <font face="Tahoma"> –
      A WordTracker term that refers to the number of times a </font>
          <a href="http://seo.zunch.com/term-Keyword_24.htm" target="_blank">
            <font face="Tahoma">Keyword</font>
          </a>
          <font face="Tahoma"> has
      appeared in WordTracker’s database compared with the number of competing Web pages. </font>
        </p>
        <p>
          <strong>
            <font face="Tahoma">DETAILED EXPLANATION</font>
          </strong>
        </p>
        <p>
          <font face="Tahoma">The KEI for a keyword should increase if its popularity increases.
      Popularity is defined as the "Count" or number of times it appears. </font>
        </p>
        <p>
          <font face="Tahoma">The KEI for a keyword should decrease if it becomes more competitive.
      Competitiveness is defined as the number of sites which a search engine e.g. Google
      displays when you search for that keyword using exact match search.<br /><br />
      Exact match search means that a search engine searches for only those sites which
      use the keyword exactly as typed in by the user. It is the equivalent of entering:<br /><br /><img src="http://blog.activeservers.com/content/binary/TAO1.png" border="0" /> <br /><br />
      Partial match search means that a search engine also searches for sites which contain
      the individual words of the keyword but not necessarily occurring together or in the
      order typed in by the user. It is the equivalent of entering:<br /><br /><img src="http://blog.activeservers.com/content/binary/TAO2.png" border="0" /> <br /><br />
      Partial match search presents a distorted picture of the competitiveness of a keyword
      because when you optimize your site for a particular keyword, you are actually competing
      with sites which have used the keyword exactly as typed in by the user.</font>
        </p>
        <p>
          <font face="Tahoma">I have personally found </font>
          <a href="http://www.wordtracker.com/" target="_blank">
            <font face="Tahoma">Word
      Tracker</font>
          </a>
          <font face="Tahoma"> a great resource for everyone who really understands
      the importance of market speak. It really can profoundly effect the outcome of any
      web enterprise. Today in the news I also found </font>
          <a href="http://www.free-seo-news.com/newsletter173.htm#facts" target="_blank">
            <font face="Tahoma">this
      article</font>
          </a>
          <font face="Tahoma"> provides some insight. It might make
      the experienced SEO pro say no kidding. Though when discussing the topic
      of KEI, the object is to remove as much of the ambiguity as possible.</font>
        </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=87fece7f-98e2-4c62-94cc-4de12c98383b" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>KEI importance</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,87fece7f-98e2-4c62-94cc-4de12c98383b.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,87fece7f-98e2-4c62-94cc-4de12c98383b.aspx</link>
      <pubDate>Tue, 23 Aug 2005 01:29:06 GMT</pubDate>
      <description>&lt;p&gt;
   &lt;font face=Tahoma&gt;There are many unique terms associated with &lt;/font&gt;&lt;a href="http://seo.zunch.com/" target=_blank&gt;&lt;font face=Tahoma&gt;search
   engine optimization&lt;/font&gt;&lt;/a&gt;&lt;font face=Tahoma&gt; and &lt;/font&gt;&lt;a href="http://seo.zunch.com/" target=_blank&gt;&lt;font face=Tahoma&gt;search
   engine marketing&lt;/font&gt;&lt;/a&gt;&lt;font face=Tahoma&gt;. Keyword Effectiveness &lt;/font&gt;&lt;a href="http://seo.zunch.com/term-Index_22.htm" target=_blank&gt;&lt;font face=Tahoma&gt;Index&lt;/font&gt;&lt;/a&gt;&lt;font face=Tahoma&gt; –
   A WordTracker term that refers to the number of times a &lt;/font&gt;&lt;a href="http://seo.zunch.com/term-Keyword_24.htm" target=_blank&gt;&lt;font face=Tahoma&gt;Keyword&lt;/font&gt;&lt;/a&gt;&lt;font face=Tahoma&gt; has
   appeared in WordTracker’s database compared with the number of competing Web pages. &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;strong&gt;&lt;font face=Tahoma&gt;DETAILED EXPLANATION&lt;/font&gt;&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;font face=Tahoma&gt;The KEI for a keyword should increase if its popularity increases.
   Popularity is defined as the "Count" or number of times it appears. &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;font face=Tahoma&gt;The KEI for a keyword should decrease if it becomes more competitive.
   Competitiveness is defined as the number of sites which a search engine e.g.&amp;nbsp;Google
   displays when you search for that keyword using exact match search.&lt;br&gt;
   &lt;br&gt;
   Exact match search means that a search engine searches for only those sites which
   use the keyword exactly as typed in by the user. It is the equivalent of entering:&lt;br&gt;
   &lt;br&gt;
   &lt;img src="http://blog.activeservers.com/content/binary/TAO1.png" border=0&gt;&amp;nbsp;&lt;br&gt;
   &lt;br&gt;
   Partial match search means that a search engine also searches for sites which contain
   the individual words of the keyword but not necessarily occurring together or in the
   order typed in by the user. It is the equivalent of entering:&lt;br&gt;
   &lt;br&gt;
   &lt;img src="http://blog.activeservers.com/content/binary/TAO2.png" border=0&gt;&amp;nbsp;&lt;br&gt;
   &lt;br&gt;
   Partial match search presents a distorted picture of the competitiveness of a keyword
   because when you optimize your site for a particular keyword, you are actually competing
   with sites which have used the keyword exactly as typed in by the user.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;font face=Tahoma&gt;I have personally found &lt;/font&gt;&lt;a href="http://www.wordtracker.com/" target=_blank&gt;&lt;font face=Tahoma&gt;Word
   Tracker&lt;/font&gt;&lt;/a&gt;&lt;font face=Tahoma&gt; a great resource for everyone who really understands
   the importance of market speak. It really can profoundly effect the outcome of any
   web enterprise. Today in the news I also found &lt;/font&gt;&lt;a href="http://www.free-seo-news.com/newsletter173.htm#facts" target=_blank&gt;&lt;font face=Tahoma&gt;this
   article&lt;/font&gt;&lt;/a&gt;&lt;font face=Tahoma&gt;&amp;nbsp;provides some&amp;nbsp;insight. It might make
   the experienced SEO pro&amp;nbsp;say no kidding. Though&amp;nbsp;when discussing the topic
   of KEI, the object is to remove as much of the ambiguity as possible.&lt;/font&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=87fece7f-98e2-4c62-94cc-4de12c98383b" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=980276df-56b0-4b0c-8e17-2aea8dae08ff</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,980276df-56b0-4b0c-8e17-2aea8dae08ff.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <table id="table1" cellspacing="3" cellpadding="3" width="100%" border="0">
          <tbody>
            <tr>
              <td width="122" rowspan="2">
                <font face="Tahoma" size="2">
                  <img src="http://blog.activeservers.com/content/binary/imagewarning.gif" border="0" />
                </font>
              </td>
              <td>
                <font face="Tahoma" size="2">Some Questions for your developer. Make sure before you
               decide who will develop your website you have a good idea that the money is well spent.
               There are massive differences between developers. Everything about a web site does
               not hinge totally on their ability to write dynamic content. Though this is a important
               factor it is but one. </font>
              </td>
            </tr>
            <tr>
              <td>
                <font face="Tahoma" size="2">Doing a search the Internet you see it for yourself. 
               Note the difference in the designs of the sites you visit. Some look like they were
               created by expensive media agencies while others look like a 12-year-old did it for
               his school project. Which might be the case.</font>
              </td>
            </tr>
          </tbody>
        </table>
        <p>
          <font face="Tahoma" size="2">Here are 5 questions your web site developer might not
      want you to ask. <a href="http://www.elixirsystems.com/articles/a050528.php" target="_blank">Click
      Here</a></font>
        </p>
        <div class="clearfix" id="content">
          <div id="maincontent">
            <div id="flow" style="BACKGROUND-POSITION: 0px 0px; CURSOR: pointer" onclick="toggle()">
              <div id="tab" style="MARGIN: 0px 0px 0px 12px; CURSOR: auto" onclick="cancelbubble(event)">
                <div class="wrap">
                  <font face="Tahoma" size="2">
                    <b>What Do You Want from your site?</b>
                  </font>
                  <p>
                    <font face="Tahoma" size="2">In order to find help, you need first to figure out what
                     you want. Most people who want a new web site, think they can be big portal site over
                     night. Though this is not really possible without a spending a substantial sum. Ask
                     yourself the following questions:</font>
                  </p>
                  <ol>
                    <li>
                      <font face="Tahoma" size="2">What kind of information do you want on the site? How
                        big should your site will be? </font>
                    </li>
                    <li>
                      <font face="Tahoma" size="2">Have some idea who your users will be? </font>
                    </li>
                    <li>
                      <font face="Tahoma" size="2">Will your site require regular updates? Would you like
                        to make changes yourself? </font>
                    </li>
                    <li>
                      <font face="Tahoma" size="2">Will you be selling something? </font>
                    </li>
                    <li>
                      <font face="Tahoma" size="2">Will you need a database to store and retrieve information? </font>
                    </li>
                    <li>
                      <font face="Tahoma" size="2">Do you want to rely totally on search engines to send
                        more traffic to your site? </font>
                    </li>
                    <li>
                      <font face="Tahoma" size="2">When do you need the job done? </font>
                    </li>
                    <li>
                      <font face="Tahoma" size="2">What is your budget? </font>
                    </li>
                  </ol>
                </div>
              </div>
            </div>
          </div>
        </div>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=980276df-56b0-4b0c-8e17-2aea8dae08ff" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>Questions to your designer</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,980276df-56b0-4b0c-8e17-2aea8dae08ff.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,980276df-56b0-4b0c-8e17-2aea8dae08ff.aspx</link>
      <pubDate>Mon, 22 Aug 2005 17:59:07 GMT</pubDate>
      <description>&lt;table id=table1 cellspacing=3 cellpadding=3 width="100%" border=0&gt;
   &lt;tbody&gt;
      &lt;tr&gt;
         &lt;td width=122 rowspan=2&gt;
            &lt;font face=Tahoma size=2&gt;&lt;img src="http://blog.activeservers.com/content/binary/imagewarning.gif" border=0&gt;&lt;/font&gt;&lt;/td&gt;
         &lt;td&gt;
            &lt;font face=Tahoma size=2&gt;Some Questions for your developer. Make sure before you decide
            who will develop your website you have a good idea that the money is well spent. There
            are massive differences between developers. Everything about a web site does not hinge
            totally on their ability to write dynamic content. Though this is a important factor
            it is but one. &lt;/font&gt;&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
         &lt;td&gt;
            &lt;font face=Tahoma size=2&gt;Doing a search the Internet you see it for yourself.&amp;nbsp;
            Note the difference in the designs of the sites you visit. Some look like they were
            created by expensive media agencies while others look like a 12-year-old did it for
            his school project. Which might be the case.&lt;/font&gt;&lt;/td&gt;
      &lt;/tr&gt;
   &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;
   &lt;font face=Tahoma size=2&gt;Here are 5 questions your web site developer might not want
   you to ask. &lt;a href="http://www.elixirsystems.com/articles/a050528.php" target=_blank&gt;Click
   Here&lt;/a&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;div class=clearfix id=content&gt;
   &lt;div id=maincontent&gt;
      &lt;div id=flow style="BACKGROUND-POSITION: 0px 0px; CURSOR: pointer" onclick=toggle()&gt;
         &lt;div id=tab style="MARGIN: 0px 0px 0px 12px; CURSOR: auto" onclick=cancelbubble(event)&gt;
            &lt;div class=wrap&gt;&lt;font face=Tahoma size=2&gt;&lt;b&gt;What Do You Want from your site?&lt;/b&gt;&lt;/font&gt; 
               &lt;p&gt;
                  &lt;font face=Tahoma size=2&gt;In order to find help, you need first to figure out what
                  you want. Most people who want a new web site, think they can be big portal site over
                  night. Though this is not really possible without a spending a substantial sum. Ask
                  yourself the following questions:&lt;/font&gt;
               &lt;/p&gt;
               &lt;ol&gt;
                  &lt;li&gt;
                     &lt;font face=Tahoma size=2&gt;What kind of information do you want on the site? How big
                     should your site will be? &lt;/font&gt; 
                  &lt;li&gt;
                     &lt;font face=Tahoma size=2&gt;Have some idea who your users will be? &lt;/font&gt; 
                  &lt;li&gt;
                     &lt;font face=Tahoma size=2&gt;Will your site require regular updates? Would you like to
                     make changes yourself? &lt;/font&gt; 
                  &lt;li&gt;
                     &lt;font face=Tahoma size=2&gt;Will you be selling something? &lt;/font&gt; 
                  &lt;li&gt;
                     &lt;font face=Tahoma size=2&gt;Will you need a database to store and retrieve information? &lt;/font&gt; 
                  &lt;li&gt;
                     &lt;font face=Tahoma size=2&gt;Do you want to rely totally on search engines to send more
                     traffic to your site? &lt;/font&gt; 
                  &lt;li&gt;
                     &lt;font face=Tahoma size=2&gt;When do you need the job done? &lt;/font&gt; 
                  &lt;li&gt;
                     &lt;font face=Tahoma size=2&gt;What is your budget? &lt;/font&gt;
                  &lt;/li&gt;
               &lt;/ol&gt;
            &lt;/div&gt;
         &lt;/div&gt;
      &lt;/div&gt;
   &lt;/div&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=980276df-56b0-4b0c-8e17-2aea8dae08ff" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=2921b7cd-8111-473a-ada1-6b943140aa48</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,2921b7cd-8111-473a-ada1-6b943140aa48.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Have you noticed your search engine rank slipping? Perhaps it is due to the fact that
      people are copying your content. How can you find out about this and track down who
      is using your content? 
   </p>
        <p>
      Well I have found that the easiest way is to simply go to this link and you run your
      domain name. 
   </p>
        <p>
          <a href="http://www.copyscape.com/" target="_blank">http://www.copyscape.com/</a>
        </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=2921b7cd-8111-473a-ada1-6b943140aa48" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>What's Up with my ranking</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,2921b7cd-8111-473a-ada1-6b943140aa48.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,2921b7cd-8111-473a-ada1-6b943140aa48.aspx</link>
      <pubDate>Mon, 22 Aug 2005 16:59:24 GMT</pubDate>
      <description>&lt;p&gt;
   Have you noticed your search engine rank slipping? Perhaps it is due to the fact that
   people are copying your content. How can you find out about this and track down who
   is using your content? 
&lt;/p&gt;
&lt;p&gt;
   Well I have found that the easiest way is to simply go to this link and you run your
   domain name. 
&lt;/p&gt;
&lt;p&gt;
   &lt;a href="http://www.copyscape.com/" target=_blank&gt;http://www.copyscape.com/&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=2921b7cd-8111-473a-ada1-6b943140aa48" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
    <item>
      <trackback:ping>http://blog.activeservers.com/Trackback.aspx?guid=a2da76a5-ad74-4dbd-a7f4-c64042c28854</trackback:ping>
      <pingback:server>http://blog.activeservers.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.activeservers.com/PermaLink,guid,a2da76a5-ad74-4dbd-a7f4-c64042c28854.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <font face="Tahoma">Below are some of the most useful options set and in
      their suggested order: If your developer is does not use these on your site, or if
      this is not part of any development costs then make sure they are. Also make sure
      to be aware of who will be defining the keywords for your web site. Having this established
      before hiring a developer is important. You also want to know what their SEO
      experience is. I have seen quoted prices for doing this part, ranging from
      $10.00 per page to $300.00 per page. With many things in life you get exactly
      what you pay for. It does not mean that the developer is trying to dupe you but in
      most cases it is only fair to compare what you get for your money evenly. This is
      the best way to make sure that the developer doing this work is being compared openly
      and fairly. </font>
        </p>
        <p>
          <strong>
            <font face="Tahoma">&lt;title&gt;Whatever Items for Sale&lt;/title&gt;<br />
      &lt;meta name="description" content="Description"&gt;<br />
      &lt;meta name="keywords" content="keywords"&gt;<br />
      &lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;<br />
      &lt;meta http-equiv="Content-Style-Type" content="text/css"&gt;<br />
      &lt;meta http-equiv="expires" content="30 days"&gt;<br />
      &lt;meta name="author" content="John Doe"&gt;<br />
      &lt;meta name="copyright" content="Copyright 2004 <a href="http://www.domainname.com">www.domainname.com</a>"&gt;<br />
      &lt;meta name="distribution" content="global"&gt;<br />
      &lt;meta name="robots" content="index, follow"&gt;<br />
      &lt;meta name="rating" content="Safe For Kids"&gt;</font>
          </strong>
        </p>
        <img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=a2da76a5-ad74-4dbd-a7f4-c64042c28854" />
        <br />
        <hr />
   ActiveServers Support<a href="http://blog.activeservers.com">ActiveServers</a>. 
</body>
      <title>MetaTag Basics</title>
      <guid>http://blog.activeservers.com/PermaLink,guid,a2da76a5-ad74-4dbd-a7f4-c64042c28854.aspx</guid>
      <link>http://blog.activeservers.com/PermaLink,guid,a2da76a5-ad74-4dbd-a7f4-c64042c28854.aspx</link>
      <pubDate>Mon, 22 Aug 2005 16:52:08 GMT</pubDate>
      <description>&lt;p&gt;
   &lt;font face=Tahoma&gt;Below&amp;nbsp;are some of the&amp;nbsp;most useful options set and in their
   suggested order: If your developer is does not use these on your site, or if this
   is not part of any development costs then make sure they are. Also make sure to be
   aware of who will be defining the keywords for your web site. Having this established
   before hiring a developer is important. You also want to know&amp;nbsp;what their SEO
   experience is. I have seen quoted prices for&amp;nbsp;doing&amp;nbsp;this part, ranging from
   $10.00 per page to $300.00 per page.&amp;nbsp;With many things in life you get exactly
   what you pay for. It does not mean that the developer is trying to dupe you but in
   most cases it is only fair to compare what you get for your money evenly. This is
   the best way to make sure that the developer doing this work is being compared openly
   and fairly. &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;strong&gt;&lt;font face=Tahoma&gt;&amp;lt;title&amp;gt;Whatever Items&amp;nbsp;for Sale&amp;lt;/title&amp;gt;&lt;br&gt;
   &amp;lt;meta name="description" content="Description"&amp;gt;&lt;br&gt;
   &amp;lt;meta name="keywords" content="keywords"&amp;gt;&lt;br&gt;
   &amp;lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&amp;gt;&lt;br&gt;
   &amp;lt;meta http-equiv="Content-Style-Type" content="text/css"&amp;gt;&lt;br&gt;
   &amp;lt;meta http-equiv="expires" content="30 days"&amp;gt;&lt;br&gt;
   &amp;lt;meta name="author" content="John Doe"&amp;gt;&lt;br&gt;
   &amp;lt;meta name="copyright" content="Copyright 2004 &lt;a href="http://www.domainname.com"&gt;www.domainname.com&lt;/a&gt;"&amp;gt;&lt;br&gt;
   &amp;lt;meta name="distribution" content="global"&amp;gt;&lt;br&gt;
   &amp;lt;meta name="robots" content="index, follow"&amp;gt;&lt;br&gt;
   &amp;lt;meta name="rating" content="Safe For Kids"&amp;gt;&lt;/font&gt; &lt;/strong&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.activeservers.com/aggbug.ashx?id=a2da76a5-ad74-4dbd-a7f4-c64042c28854" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
ActiveServers Support&lt;a href="http://blog.activeservers.com"&gt;ActiveServers&lt;/a&gt;. </description>
      <category>SEO</category>
    </item>
  </channel>
</rss>