<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC "-//W3C//ENTITIES Latin 1 for XHTML//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">]>
<rss version="2.0" xml:base="http://archive-sfx.spreadfirefox.com">
<channel>
 <title>Spread Firefox - For the Record</title>
 <link>http://archive-sfx.spreadfirefox.com/taxonomy/term/2/0</link>
 <description>
Monitor the media.  Contact
reporters when a story needs a response.
</description>
 <language>en</language>
<item>
 <title>{Google AdSense users} Adding a FF button if your anti-virus prevents your Google ad to be shown...</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28575</link>
 <description>&lt;p &gt;Hallo there,&lt;/p&gt;&lt;p &gt;after quite a good amount of stress and investigation I found out that my anti-virus software (Kaspersky) was blocking my Google Ads.&lt;/p&gt;&lt;p &gt;As I like to help spreading the Fox I have then prepared some JavaScript code to show a SpreadFireFox button on the page of users having their anti-virus blocking the ads.&lt;/p&gt;&lt;p &gt;This is the code Google gives you to add the banner (personal code replaced by ***):&lt;/p&gt;&lt;p &gt;&amp;lt;blockquote&amp;gt;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;p id=&amp;quot;googleAd&amp;quot; style=&amp;quot;margin:-14px 20px 0 30px;&amp;quot;&amp;gt;&amp;amp;bull; &lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;!--&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; google_ad_client = &amp;quot;pub-**************&amp;quot;;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; google_ad_output = &amp;quot;textlink&amp;quot;;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; google_ad_format = &amp;quot;ref_text&amp;quot;;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; google_cpa_choice = &amp;quot;CAAQjbiylAIaCFDA2CpLIq2IKNW34YcBMAA&amp;quot;;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; google_ad_channel = &amp;quot;***********&amp;quot;;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; //--&amp;gt;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/p&amp;gt;&lt;br &gt;&amp;lt;/blockquote&amp;gt;&lt;/p&gt;&lt;p &gt;Following is the code to add right after the closing paragraph tag:&lt;br &gt;&amp;lt;blockquote&amp;gt;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; /*&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if the googleAd is filtered by an anti-virus, show the alternative message&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var el = document.getElementById(&#039;googleAd&#039;);&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var i = el.innerHTML.toLowerCase().indexOf(&#039;firefox&#039;);&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if(i &amp;lt; 0)&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; // googleAd was blocked&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var link = document.createElement(&#039;a&#039;);&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; link.href = &lt;a href=&quot;?q=affiliates&amp;amp;amp;id={YOUR&quot; rel=&quot;nofollow&quot;&gt;&#039;?q=affiliates&amp;amp;amp;id={YOUR&lt;/a&gt; AFFILIATE ID GOES HERE}&amp;amp;amp;t=219&#039;;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var img = document.createElement(&#039;img&#039;);&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; img.src = &#039;http://sfx-images.mozilla.org/affiliates/Buttons/firefox2/ff2b80x15.gif&#039;;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; img.style.border = &#039;0&#039;;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; img.title = &#039;Firefox 2&#039;;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; img.align=&#039;absmiddle&#039;;&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; link.appendChild(img);&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; el.appendChild(link);&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var text = document.createTextNode(&#039; my preferred browser since version 1.0!&#039;);&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; el.appendChild(text);&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&lt;br &gt;&amp;lt;/blockquote&amp;gt;&lt;br &gt;&lt;/p&gt;&lt;p &gt;&lt;br &gt;That&#039;s it: just wanted to share this with you!&lt;/p&gt;&lt;p &gt;&lt;br &gt;&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Fri, 12 Oct 2007 09:49:53 -0700</pubDate>
</item>
<item>
 <title>Firefox attack uses Internet Explorer</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28443</link>
 <description>&lt;p &gt;An unusual browser attack has been found in which Microsoft&#039;s IE can be used to activate Mozilla&#039;s Firefox and run malicious code.&lt;/p&gt;&lt;p &gt;The zero-day flaw uses a protocol handler that Firefox puts on the computer when it installs to handle &#039;firefox://&#039; commands.&lt;/p&gt;&lt;p &gt;If IE is used on a page that tries to use the &#039;firefoxurl://&#039; the browser will activate Firefox automatically and allow the malicious code to be run in JavaScript.&lt;/p&gt;&lt;p &gt;The flaw was found by security researcher Thor Larholm and published on his blog. No patch currently exists to deal with the problem.&lt;/p&gt;&lt;p &gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Source - &lt;strong &gt;Computer Active&lt;/strong&gt;&lt;br &gt;&lt;/p&gt;&lt;p &gt;&amp;nbsp;&lt;br &gt;&lt;br &gt;&amp;nbsp; &lt;/p&gt;&lt;p &gt;&lt;br &gt;&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Tue, 25 Sep 2007 10:51:30 -0700</pubDate>
</item>
<item>
 <title>Is HARRY POTTER = FIREFOX?</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28437</link>
 <description>&lt;p &gt;As I stopped reading on page 603 of my “Harry Potter and the Order of the Phoenix” e-book, it stroked on my mind. After I went to bed and was trying to snooze off, it stroked me again. I was thinking about the story I had read so far, suddenly my thought diverted to my Internet browser Firefox. Can Harry Potter be compared to Firefox, I thought. It was strange but funny. Have a look and read through if you readers have any interest in my comparison.&lt;/p&gt;
  &lt;p &gt;Harry Potter = Firefox&lt;/p&gt;
  &lt;p &gt;Dumbledore = World Wide Web (WWW)&lt;/p&gt;
  &lt;p &gt;Ministry Of Magic = Microsoft Corporation&lt;/p&gt;
  &lt;p &gt;Hogwarts = Mozilla Corporation&lt;/p&gt;
  &lt;p &gt;Lord Voldemort = Opera&lt;/p&gt;
  &lt;p &gt;Draco Malfoy = Internet Explorer (IE) &lt;/p&gt;
  &lt;p &gt;Harry’s Friends = Firefox users&lt;/p&gt;
  &lt;p &gt;Ron &amp;amp; Hermione = Firefox Add-ons &amp;amp; Themes.&lt;/p&gt;
  &lt;p &gt;The Quibbler = Spreadfirefox.com&lt;/p&gt;
  &lt;p &gt;Isn’t it weird?&amp;nbsp; I took the Harry Potter part from the fifth book. It’s like Magical World = Digital World!&lt;/p&gt;
  &lt;p &gt;Dumbledore is the WWW because he loves Harry Potter, just as the WWW loves Firefox, not blocking any of its websites from Firefox.&lt;/p&gt;
  &lt;p &gt;Hogwarts is said to the be the “Home of Harry Potter”, just as Mozilla is of Firefox!&lt;/p&gt;
  &lt;p &gt;Ministry Of Magic always wants an excuse to dump Potter, just as Microsoft, always trying to dupe Firefox, isn’t it?&lt;/p&gt;
  &lt;p &gt;Lord Voldemort is the biggest enemy of Harry. &amp;nbsp;Just as Opera, a complete rival of Firefox.&lt;/p&gt;
  &lt;p &gt;“The Quibbler” in HP5 supported Harry and him say the truth to the world. In the real world, the job of “The Quibbler” is done by Spreadfirefox.com&lt;/p&gt;
  &lt;p &gt;
  &lt;p &gt;Draco Malfoy is a git, loved my some and hated or ignored by others. Truly hates Potter. Just as IE. You know what I mean, do you?&lt;/p&gt;
  &lt;p &gt;Potter’s friends support him just as we, the Firefox users, support our Firefox.&lt;/p&gt;
  &lt;p &gt;Lastly, Harry’s true friends, Ron and Hermione, helped Harry Potter is every aspect of life and helped him to get better and better. Just as the Firefox addons and themes!&lt;/p&gt;
  &lt;p &gt;This is how I compared Harry to Firefox. I may be wrong; you can correct me in that case. Thanks for reading!&lt;/p&gt;
  &lt;p &gt;&amp;nbsp;&lt;/p&gt;
  &lt;p &gt;&amp;nbsp;&lt;/p&gt;
  &lt;p &gt;&amp;nbsp;&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Tue, 25 Sep 2007 01:17:42 -0700</pubDate>
</item>
<item>
 <title>Firefox 2.0.0.7</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28424</link>
 <description>&lt;p&gt;Its the year 2007, and Mozilla has already launched its newest version&lt;br /&gt;
of Firefox 2.0.0.7. Gaining extreme popularity, this open-source&lt;br /&gt;
internet browser kicked off in 2004, from then there was no looking&lt;br /&gt;
back.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;Firefox, along with several other browsers, took the advantage of&lt;br /&gt;
the downfall of Internet Explorer. Firefox is now on top of the list in&lt;br /&gt;
the browser category, closely marked by Opera.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;The standard features of any of today&#039;s browser are&lt;br /&gt;
tabbed-browsing, pop-up blocker, efficient download management. All&lt;br /&gt;
these and more are offered by Firefox.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;The download size of Firefox is barely 6 MB. Installation is easy,&lt;br /&gt;
quick and simple. It takes about 20MB after installation which is 4&lt;br /&gt;
times the size of Opera&#039;s.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;The browser window is sleek and with simple buttons similar to IE.&lt;br /&gt;
There is a search engine box where the user&#039;s favorite search engine&lt;br /&gt;
can be chosen and searched.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;Firefox offers important add ons. The most recommended are&lt;br /&gt;
Fasterfox, Adblock, Flashblock and Foxytunes. It also offers lots of&lt;br /&gt;
themes which are pretty good.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;&lt;br /&gt;
Firefox is known for its security, and its version 2.0.0.7 does a little more to keep its name and fame.&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Sun, 23 Sep 2007 11:55:00 -0700</pubDate>
</item>
<item>
 <title>Firefox 2.0.0.7</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28423</link>
 <description>&lt;p&gt;Its the year 2007, and Mozilla has already launched its newest version&lt;br /&gt;
of Firefox 2.0.0.7. Gaining extreme popularity, this open-source&lt;br /&gt;
internet browser kicked off in 2004, from then there was no looking&lt;br /&gt;
back.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;Firefox, along with several other browsers, took the advantage of&lt;br /&gt;
the downfall of Internet Explorer. Firefox is now on top of the list in&lt;br /&gt;
the browser category, closed marked by Opera.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;The standard features of any of today&#039;s browser are&lt;br /&gt;
tabbed-browsing, pop-up blocker, efficient download management. All&lt;br /&gt;
these and more are offered by Firefox.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;The download size of Firefox is barely 6 MB. Installation is easy,&lt;br /&gt;
quick and simple. It takes about 20MB after installation which is 4&lt;br /&gt;
times the size of Opera&#039;s.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;The browser window is sleek and with simple buttons similar to IE.&lt;br /&gt;
There is a search engine box where the user&#039;s favorite search engine&lt;br /&gt;
can be chosen and searched.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;Firefox offers important add ons. The most recommended are&lt;br /&gt;
Fasterfox, Adblock, Flashblock and Foxytunes. It also offers lots of&lt;br /&gt;
themes which are pretty good.&lt;br /&gt;
&lt;br &gt;&lt;/p&gt;
&lt;p&gt;&lt;br &gt;&lt;br /&gt;
Firefox is known for its security, and its version 2.0.0.7 does a little more to keep its name and fame.&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Sun, 23 Sep 2007 11:54:33 -0700</pubDate>
</item>
<item>
 <title>FF and U4H</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28386</link>
 <description>&lt;p class=&quot;MsoNormal&quot;&gt;Specializing in .tv channels and Internet Television Broadcasting, U4H, Inc. allows corporations to meet the demand for media rich content head on.&amp;nbsp; It is no surprise the Internet and Television have merged.&amp;nbsp; Web pages are becoming pieces of software.&amp;nbsp; The way the youth are using technologies and search engines have forced web design to change.&amp;nbsp; U4H, Inc. has many solutions and ideas that are revolutionizing the Internet.&amp;nbsp; With an understanding of technology, where technology is going, and global cultures U4H, Inc. is reaching out to FireFox to form a collaborative relationship.&amp;nbsp; FireFox is encouraged to visit Unity 4 Humanity, Inc.&#039;s official home page &lt;a href=&quot;http://www.unity4humanity.com/&quot; rel=&quot;nofollow&quot; rel=&quot;nofollow&quot;&gt;www.unity4humanity.com&lt;/a&gt; and &lt;a href=&quot;http://www.u4hcore.com/&quot; rel=&quot;nofollow&quot; rel=&quot;nofollow&quot;&gt;www.u4hcore.com&lt;/a&gt;, Unity 4 Humanity, Inc.&#039;s team of core consultants home.&amp;nbsp; U4H and FireFox have the unique opportunity to create the future software that will fuel, structure, and organize globally recognized sites and .tv Internet Channels.&amp;nbsp; U4H and FireFox have the opportunity to truly structure the world of .tv channels and Internet Television Broadcasting with the Dot TV Guide and Dot TV on Demand.&amp;nbsp; Please contact Anthony Galima the CEO of Unity 4 Humanity, Inc. directly and work towards building to dreams and not limitations!&amp;nbsp; FireFox can and should be the future of the Internet!&amp;nbsp; U4H, Inc.&amp;nbsp;asks individuals and corporations to explore its Global Web Presence, Mission statement&amp;nbsp;and encourage FireFox to contact them.&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Sun, 16 Sep 2007 04:26:59 -0700</pubDate>
</item>
<item>
 <title>As slovenia nears the 50% mark</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28307</link>
 <description>&lt;p &gt;As you may be aware XiTi&#039;s July report on browser usage announced that FFx had made progress all over the world. In fact its usage in the EU was about 30%. Leading the pack was &lt;strong &gt;Slovenia&lt;/strong&gt; with &lt;strong &gt;47,9%&lt;/strong&gt;. This is the first nation to come near to the &lt;strong &gt;1/2&lt;/strong&gt; mark. It has been suggested that in honour of this historic ocassion a publicity campaign be mounted to spread the better browser even further. I agree with it. What do you think?&lt;/p&gt;&lt;p &gt;&amp;nbsp;I first saw the idea here&lt;/p&gt;&lt;p &gt;&lt;a href=&quot;http://weblogs.mozillazine.org/gerv/archives/2007/07/world_slovenia_day.html&quot; title=&quot;http://weblogs.mozillazine.org/gerv/archives/2007/07/world_slovenia_day.html&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.mozillazine.org/gerv/archives/2007/07/world_slovenia_day.html&lt;/a&gt;&lt;/p&gt;&lt;p &gt;&amp;nbsp;&lt;/p&gt;&lt;p &gt;&amp;nbsp;tnx&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Sat, 01 Sep 2007 11:59:48 -0700</pubDate>
</item>
<item>
 <title>Browser Wars...</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28208</link>
 <description>&lt;p &gt;... are they really over?&lt;/p&gt;&lt;p &gt;&amp;nbsp;&lt;/p&gt;&lt;p &gt;What do you think?&amp;nbsp;&lt;/p&gt;&lt;p &gt;&amp;nbsp;&lt;/p&gt;&lt;p &gt;See this link to find out what Foxkeh thinks.&amp;nbsp;&lt;/p&gt;&lt;p &gt;http://www.foxkeh.com/downloads/history/history-foxkeh.pdf
&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Thu, 23 Aug 2007 04:14:52 -0700</pubDate>
</item>
<item>
 <title>Firefox hoax site making money?</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28186</link>
 <description>&lt;p &gt;
When searching &amp;quot;firefox&amp;quot; in google.com (english) a payed&lt;br /&gt;
link is displayed on top of the page. this link takes you to a page from where you can download firefox 3.0 (?!) but it&#039;s actually pointing to google&#039;s firefox toolbar. this link is a adsense link, meaning it&#039;s making the site owners money.&lt;/p&gt;&lt;p &gt;&amp;nbsp;shouldn&#039;t this site be banned from google?&lt;br &gt;&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Mon, 20 Aug 2007 00:31:46 -0700</pubDate>
</item>
<item>
 <title>Majorty add-on not working in Firefox 2.0.0.6 !</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28184</link>
 <description>&lt;p &gt;Hey all,&lt;/p&gt;&lt;p &gt;I had installed the latest firefox since its out its version 2.0.0.6. i hate the new version coz none of my Add-on extension is working like Web developer,chatzilla,fireftp,printcontent and so much more.its been like nearly a month since this version is out and i cant make my add on run.first i thought it maybe virus but no virus or spybot on my system/can anyone help when the add-on for this version will be released?&lt;br &gt;&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Sun, 19 Aug 2007 00:06:26 -0700</pubDate>
</item>
<item>
 <title>Spreadfirefox Banner</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28106</link>
 <description>&lt;p &gt;hi,&lt;/p&gt;&lt;p &gt;I&#039;m looking for a Spreadfirefox Banner for myspace page, I&#039;m using Kens but i need a bigger one. does anyone have one?&lt;br &gt; &lt;/p&gt;&lt;p &gt;&amp;nbsp;&lt;/p&gt;&lt;p &gt;&lt;br &gt;&lt;br &gt;&lt;br &gt;&amp;nbsp;&lt;/p&gt;
 Come visit me at myspace&lt;a title=&quot;Open-Source&quot; href=&quot;http://www.myspace.com/opensoucepage&quot; rel=&quot;nofollow&quot;&gt;&lt;br &gt;Open-Source&lt;/a&gt;&lt;br &gt;&lt;/p&gt;
&lt;p &gt;&amp;nbsp;&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Mon, 06 Aug 2007 17:15:32 -0700</pubDate>
</item>
<item>
 <title>2 years and counting</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28079</link>
 <description>&lt;p&gt;i just past my 2 year mark here at Spreadfirefox :) I&#039;m prode to be part of a great group of people.&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Thu, 02 Aug 2007 14:16:08 -0700</pubDate>
</item>
<item>
 <title> If someone says UBUNTU, Don&#039;t say Kazoonteit.</title>
 <link>http://archive-sfx.spreadfirefox.com/node/28053</link>
 <description>&lt;p &gt;You know how sometimes something really good comes along that you just have to tell somebody else ? I have long loved Firefox, recently I made a remarkable discovery.There is a powerful force out there doing it&#039;s part in spreading the Fox in a oh so magnificent way.If someone says UBUNTU don&#039;t say Kaazoonteit.&lt;br &gt;&amp;nbsp; I&#039;m sure most of you have heard of UBUNTU by now. But for those of you that don&#039;t live on planet earth, and haven&#039;t heard of it yet. Or even if you HAVE heard about it, just haven&#039;t taken it past that, I am here to tell somebody, anybody, this is something very very special of an OS(albeit Linux). In these last 3 weeks since switching over from Win.XP I&#039;ve been  just about floored by some of it&#039;s everyday offerings.For starters it comes equipped with Firefox by default, incl. Thunderbird SMPT eMail, in fact all of it&#039;s system&#039;s default software choices read like an awards list. UBUNTU is a Linux based OS, Don&#039;t let that scare you, it&#039;s billed as the easiest transitional ticket for even the most diehard(close minded) Windows user. Who knows, even if EVENTUALLY they do get Vista right. For now there are many disappointed users whose heads could easily be swayed by an alternative like UBUNTU, especially with Firefox leading the way. I&#039;m no expert,but I think thats what makes my opinion count maybe a little more.I say (w/ Beryl desktop Enhancement feature !)UBUNTU is an excellent advancement from XP, and what Vista shouldA-couldA been.With emphasis on security, including not having to protect your computer from itself(ActiveX). Whats that old saying, If you&#039;ll sell your friends out once...Some areas UBUNTU makes itself noticed are PDF files no longer drag, and now open like any other page. Large maps or images that would have made my computer choke in XP now glide right along. All the things I thought make me not like Linux turned out to be what I liked most ie Terminal apts. You can&#039;t beat the price tag either, it&#039;s FREE ! If downloading UBUNTU off the internet isn&#039;t to your liking, you can easily get the current Live  &amp;quot;supported&amp;quot; CD version shipped right to your door. &lt;a href=&quot;https://shipit.ubuntu.com&quot; rel=&quot;nofollow&quot;&gt;https://shipit.ubuntu.com/&lt;/a&gt;&lt;/p&gt;&lt;p &gt;In case you&#039;re still here for some reason you can even run it as a CD ,just to try it out first.Or you can run it along side Windows also. Surf the net and do your business with UBUNTU, and keep your Win. for home use. &amp;nbsp;&lt;/p&gt;&lt;p &gt;&amp;nbsp;&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Mon, 30 Jul 2007 00:10:06 -0700</pubDate>
</item>
<item>
 <title>Why is Mozilla Firefox does not allow user to use ED2K for downloading</title>
 <link>http://archive-sfx.spreadfirefox.com/node/27956</link>
 <description>&lt;p &gt;Why is firefox refushing to allow anyone to download ED2K.&lt;/p&gt;&lt;p &gt;And Firefox does not reconize ED2K as a registered protocol.&lt;/p&gt;&lt;p &gt;Can Firefox please explain the reason for not allowing this.&lt;/p&gt;&lt;p &gt;Thank you.&amp;nbsp;&lt;/p&gt;&lt;p &gt;&amp;nbsp;&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Thu, 19 Jul 2007 05:25:45 -0700</pubDate>
</item>
<item>
 <title>lolcatz</title>
 <link>http://archive-sfx.spreadfirefox.com/node/27904</link>
 <description>&lt;p &gt;Guys... found this at lolcatz...&lt;/p&gt;&lt;p &gt;&lt;img vspace=&quot;0&quot; hspace=&quot;0&quot; border=&quot;0&quot; align=&quot;bottom&quot; src=&quot;http://i0005.photobucket.com/albums/0005/icanhascheezburger/2007/7/5/20/128281656998281250PleaseICanH.jpg&quot; alt=&quot;Please, I can has Firefox&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;div id=&quot;nodevote result&quot;&gt;&lt;br/&gt;&lt;img src=&quot;modules/nodevote/star_on.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;img src=&quot;modules/nodevote/star_off.png&quot; /&gt;&lt;/div&gt;</description>
 <category domain="http://archive-sfx.spreadfirefox.com/taxonomy/term/2">For the Record</category>
 <pubDate>Wed, 11 Jul 2007 21:10:34 -0700</pubDate>
</item>
</channel>
</rss>
