<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ourlil.com &#187; Browsers</title>
	<atom:link href="http://OurLil.com/blog/category/browsers/feed/" rel="self" type="application/rss+xml" />
	<link>http://OurLil.com</link>
	<description>A web site for tutti noi (all of us!)</description>
	<lastBuildDate>Fri, 27 Apr 2012 04:06:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Let&#8217;s make the web faster &#8211; Google Code</title>
		<link>http://OurLil.com/blog/lets-make-the-web-faster-google-code/635/</link>
		<comments>http://OurLil.com/blog/lets-make-the-web-faster-google-code/635/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 16:28:21 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/?p=635</guid>
		<description><![CDATA[Let&#8217;s make the web faster &#8211; Google Code. Some choice excerpts: CSS: Using every declaration just once Using every CSS declaration only once is an effective way to reduce file size of style sheets. Itâ€™s not a trivial optimization technique though: Watch over the cascade and adjust your editing workflow. HTTP caching Web pages can [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/speed/articles/">Let&#8217;s make the web faster &#8211; Google Code</a>.</p>
<p>Some choice excerpts:</p>
<h4><a href="http://code.google.com/speed/articles/optimizing-css.html">CSS: Using every declaration just once</a></h4>
<blockquote>
<div id="optimizing-css">Using every CSS declaration only once is an effective way to reduce file size of style sheets. Itâ€™s not a trivial optimization technique though: Watch over the cascade and adjust your editing workflow.</div>
</blockquote>
<div>
<h4><a href="http://code.google.com/speed/articles/caching.html">HTTP caching</a></h4>
<blockquote>
<div id="caching">Web pages can load much faster on repeated visits if the resources come from the cache. Learn about two groups of HTTP headers that make all the difference.</div>
</blockquote>
<div>
<h4><a href="http://code.google.com/speed/articles/optimizing-images.html">Optimizing web graphics</a></h4>
<blockquote>
<div id="optimizing-images">Optimizing your web illustrations, icons, and graphics is one of the simplest yet most effective ways to decrease your page load time. In this tutorial, we discuss image file formats and optimize some real Google graphics for faster download on the web.</div>
</blockquote>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/lets-make-the-web-faster-google-code/635/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IEBlog : Site Compatibility and IE8</title>
		<link>http://OurLil.com/blog/ieblog-site-compatibility-and-ie8/525/</link>
		<comments>http://OurLil.com/blog/ieblog-site-compatibility-and-ie8/525/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 20:43:06 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Hacks]]></category>

		<guid isPermaLink="false">http://clay.blog.appeal-democrat.com/2009/03/20/ieblog-site-compatibility-and-ie8/525/</guid>
		<description><![CDATA[IEBlog : Site Compatibility and IE8 Here&#8217;re a couple of methods for coding to IE8 (new hacks! d&#8217;oh!): Initial CSS Property Values Unset properties on the currentStyle object now return their initial value. Relying on the old initial values for CSS properties such as z-index can cause problems. This is the root cause of issues [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://ieblog.members.winisp.net/images/IE8_logo.jpg" alt="" /></p>
<p><a href="http://blogs.msdn.com/ie/archive/2009/03/12/site-compatibility-and-ie8.aspx">IEBlog : Site Compatibility and IE8</a></p>
<p>Here&#8217;re a couple of methods for coding to IE8 (new hacks! d&#8217;oh!):</p>
<p><strong>Initial CSS Property Values</strong></p>
<table style="width: 100%" border="0" cellspacing="10" cellpadding="0" width="100%">
<tbody>
<tr>
<td style="padding: 0in 5.75pt;width: 49.06%" width="49%" valign="top">Unset properties on the currentStyle object now return their initial value. Relying on the old initial values for CSS properties such as z-index can cause problems. <em><a href="http://blogs.msdn.com/giorgio/archive/2009/02/01/asp-net-menu-and-ie8-rendering-white-issue.aspx">This is the root cause of issues with the ASP.NET menu control</a>.</em></td>
<td style="padding: 0in 5.75pt;width: 49.08%" width="49%" valign="top">SOLUTION: Perform a check for both the backwards compatible value and the standardized initial value.</td>
</tr>
<tr>
<td style="padding: 0in 5.75pt;width: 49.06%" width="49%" valign="top"><span style="font-family: courier new">var zIndex = elm.currentStyle.zIndex;</span><br />
<span style="font-family: courier new">if(zIndex == 0) {</span><br />
<span style="font-family: courier new"><span> </span>// custom code</span><br />
<span style="font-family: courier new">}</span></td>
<td style="padding: 0in 5.75pt;width: 49.08%" width="49%" valign="top"><span style="font-family: courier new">var zIndex = elm.currentStyle.zIndex;</span><br />
<span style="font-family: courier new">if(zIndex == 0 <span>|| zIndex == &#8220;auto&#8221;</span>) {</span><br />
<span style="font-family: courier new"><span> </span>// custom code</span><br />
<span style="font-family: courier new">}</span></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/ieblog-site-compatibility-and-ie8/525/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vic Gundotra HTML5 offline feature for iPhone 3G and HTC Magic</title>
		<link>http://OurLil.com/blog/vic-gundotra-html5-offline-feature-for-iphone-3g-and-htc-magic/499/</link>
		<comments>http://OurLil.com/blog/vic-gundotra-html5-offline-feature-for-iphone-3g-and-htc-magic/499/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 21:36:07 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[Trends]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/2009/02/18/vic-gundotra-html5-offline-feature-for-iphone-3g-and-htc-magic/499/</guid>
		<description><![CDATA[This is probably the future of web development. Web browsers with built-in database and app cache via HTML5, enabling cross-platform look &#38; feel, as well as execution. Wow!]]></description>
			<content:encoded><![CDATA[<p>This is probably the future of web development. Web browsers with built-in database and app cache via HTML5, enabling cross-platform look &amp; feel, as well as execution. Wow!</p>
<p><a href="http://OurLil.com/blog/vic-gundotra-html5-offline-feature-for-iphone-3g-and-htc-magic/499/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/vic-gundotra-html5-offline-feature-for-iphone-3g-and-htc-magic/499/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla Fennec  1.0a1 Alpha</title>
		<link>http://OurLil.com/blog/mozilla-fennec-10a1-alpha/244/</link>
		<comments>http://OurLil.com/blog/mozilla-fennec-10a1-alpha/244/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 19:47:45 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/?p=244</guid>
		<description><![CDATA[Fennec looks interesting:]]></description>
			<content:encoded><![CDATA[<p>Fennec looks interesting:</p>
<p><a href="http://OurLil.com/blog/mozilla-fennec-10a1-alpha/244/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/mozilla-fennec-10a1-alpha/244/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox to get faster JavaScript</title>
		<link>http://OurLil.com/blog/firefox-to-get-faster-javascript/185/</link>
		<comments>http://OurLil.com/blog/firefox-to-get-faster-javascript/185/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 05:14:00 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[javascript js]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/2008/08/22/firefox-to-get-faster-javascript/</guid>
		<description><![CDATA[Firefox to get massive JavaScript performance boost Mozilla is leveraging an impressive new optimization technique to bring a big performance boost to the Firefox JavaScript engine. The code was merged today (but is not yet ready to be enabled by default in the nightly builds) and is planned for inclusion in Firefox 3.1, the next [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://arstechnica.com/news.ars/post/20080822-firefox-to-get-massive-javascript-performance-boost.html">Firefox to get massive JavaScript performance boost<img src="http://media.arstechnica.com/news.media/tracemonkey-3.png" align="right" width="300" hspace="10" vspace="10" border="0" alt="JavaScript SpiderMonkey improvements" /></a><br />
<blockquote>Mozilla is leveraging an impressive new optimization technique to bring a big performance boost to the Firefox JavaScript engine. The code was merged today (but is not yet ready to be enabled by default in the nightly builds) and is planned for inclusion in Firefox 3.1, the next incremental update of the open-source web browser.Â Â Â </p></blockquote>
<p>Â </p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/firefox-to-get-faster-javascript/185/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Hacks and IE7</title>
		<link>http://OurLil.com/blog/css-hacks-and-ie7/158/</link>
		<comments>http://OurLil.com/blog/css-hacks-and-ie7/158/#comments</comments>
		<pubDate>Fri, 30 May 2008 06:43:22 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[MSIE]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[WebTech]]></category>
		<category><![CDATA[quirk]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/2008/05/29/css-hacks-and-ie7/</guid>
		<description><![CDATA[This is a really great article on how to hack IE7. CSS Hacks and IE7 The Child Selector This selector uses a &#8220;&#62;&#8221; symbol as a &#8220;combinator&#8221; that is placed between two parts of a CSS selector, and indicates that the target of the rule is the element on the right side of the &#8220;&#62;&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>This is a really great article on how to hack IE7. <a href="http://www.positioniseverything.net/articles/ie7-dehacker.html">CSS Hacks and IE7</a></p>
<ul>
<li><a href="http://www.w3.org/TR/CSS21/selector.html#x13">The Child Selector</a></li>
<li>
<blockquote><p> This selector uses a &#8220;&gt;&#8221; symbol as a &#8220;combinator&#8221; that is  placed between two parts  of a CSS selector, and indicates that the target of the rule is the element on the  right side of the &#8220;&gt;&#8221; combinator, but <em>only</em> when that element is a direct child of the element to the left of the combinator. Thus, the  selector <strong>table&gt;td</strong> can never target any element, because TD&#8217;s are <em>never</em> direct children of tables, only of TR&#8217;s. On the other hand, the selector <strong>tr&gt;td</strong> would select <em>every</em> TD on the page, since  all TD&#8217;s are direct children of TR&#8217;s.</p>
<p>The main difference between the Child combinator and the familiar space combinator is that the space combinator is a &#8220;descendant&#8221; combinator, meaning that  the element to the right of the space only needs to be between the tags of the  element on the left to be selected. So with the selector  <strong>tableÂ td</strong>, all TD&#8217;s will selected, since TD&#8217;s always fall  between the tag pair of one table or another.</p>
<p>The Child combinator is quite useful for targeting rules to direct children of  an element, <em>without</em> also targeting the more deeply nested descendants as well. Unfortunately, up until IE7 there was no point in using it for its intended purpose,  since so few of the viewing public would get the benefits of the styling.</p></blockquote>
</li>
<li>
<h5><a href="http://www.w3.org/TR/CSS21/selector.html#adjacent-selectors">The Adjacent Sibling Selector</a></h5>
<ul>
<li> This selector is a &#8220;+&#8221; combinator symbol placed between parts of a selector, and is very  similar to the Child combinator. The only difference between the two is that while the Child combinator points to direct children of an element, the Adjacent Sibling combinator points to an element which directly <em>follows</em> another element in the source.<br />
<blockquote><p>Thus the selector <strong>tr+td</strong> cannot select anything, because no TD ever directly follows a TR. Instead, TD&#8217;s are contained <em>inside</em> TR&#8217;s, and that  is not considered to be &#8220;following&#8221; the TR. However, the selector <strong>tr+tr</strong> would select any TR that directly followed another TR, which means that every TR within a table would be selected except for the very first TR in that table.</p>
<p>Get it? An adjacent sibling element not only follows its previous sibling, but is  also completely separate from it. Further, if two DIV&#8217;s are in sequence and each  contains a paragraph, those two paragraphs are <em>not</em> considered siblings, because they  reside in different parent elements. The fact that one follows another means nothing unless the following sibling starts at the same point where the previous sibling ends.</p></blockquote>
</li>
</ul>
</li>
<li><strong>Star HTML</strong></li>
</ul>
<blockquote><p>Oh, you want to know about that structural thing? Well, the hack that uses  it is called the <strong>star-html</strong> hack, and it works by taking advantage of an oddity in Explorer&#8217;s treatment of the <strong>DocumentÂ ObjectÂ Model</strong>,  or <strong>DOM</strong> for short. Simply stated, all web pages start with a root element called <strong>html</strong>, which then contains two children, the <strong>head</strong> and the <strong>body</strong> elements. Those two then contain other children, and so forth.</p></blockquote>
<ul>
<li>
<blockquote><p>Most browsers obey this arrangement, but <strong>Explorer</strong> for both  <strong>Win</strong> and <strong>Mac</strong> do not. They seem to think there is a mysterious element <em>enclosing the html element!</em> It&#8217;s pretty strange, but in fact this extra outer &#8220;root&#8221; element has no apparent ill effects on web pages, and remained unnoticed for years, until  <a href="http://www.info.com.ph/%7Eetan/w3pantheon/style/csshub.html">EdwardsonÂ Tan</a> began experimenting with CSS selectors. He found that a selector written as  <strong>*Â htmlÂ Â .targetelement</strong> would apply the styles to <strong>.targetelement</strong>, but only for the IE browsers.</p>
<p>Think about it. That star is the &#8220;universal&#8221; selector, so it points to any element, but it comes <em>before</em> <strong>html</strong>. Therefore,  the full selector in effect says: &#8220;Select <strong>.targetelement</strong> when it is contained within <strong>html</strong>, <em>and</em> when <strong>html</strong> is  contained within any other element&#8221;.</p></blockquote>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/css-hacks-and-ie7/158/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>URL Hacking: Generate Charts On-the-Fly with Googles API</title>
		<link>http://OurLil.com/blog/url-hacking-generate-charts-on-the-fly-with-googles-api/621/</link>
		<comments>http://OurLil.com/blog/url-hacking-generate-charts-on-the-fly-with-googles-api/621/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 05:19:38 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[G]]></category>
		<category><![CDATA[Mashup]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[WebTech]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/url-hacking-generate-charts-on-the-fly-with-googles-api/</guid>
		<description><![CDATA[URL Hacking: Generate Charts On-the-Fly with Googles API Pretty nifty! &#8230;and this looks pretty cool too: http://www.fusioncharts.com/free/LiveDemos.asp]]></description>
			<content:encoded><![CDATA[<p><a href="http://lifehacker.com/software/url-hacking/generate-charts-on+the+fly-with-googles-api-332156.php">URL Hacking: Generate Charts On-the-Fly with Googles API</a></p>
<p>Pretty nifty! <span id="more-621"></span>&#8230;and this looks pretty cool too:</p>
<p>http://www.fusioncharts.com/free/LiveDemos.asp</p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/url-hacking-generate-charts-on-the-fly-with-googles-api/621/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can Web 2.0 Evolve Into An Enterprise Technology?</title>
		<link>http://OurLil.com/blog/can-web-20-evolve-into-an-enterprise-technology/35/</link>
		<comments>http://OurLil.com/blog/can-web-20-evolve-into-an-enterprise-technology/35/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 18:59:19 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Interactive Team]]></category>
		<category><![CDATA[Mashup]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[WebTech]]></category>
		<category><![CDATA[nifty]]></category>
		<category><![CDATA[standards]]></category>

		<guid isPermaLink="false">http://OurLil.com/blog/can-web-20-evolve-into-an-enterprise-technology/</guid>
		<description><![CDATA[Growing Pains: Can Web 2.0 Evolve Into An Enterprise Technology? &#8212; Web 2.0 &#8212; InformationWeek Wikis, mashups, social networking, and even Second Life can have a place in business, but they need to improve legacy interoperability&#8211;and IT needs to overcome its skepticism.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.informationweek.com/news/showArticle.jhtml;jsessionid=?articleID=202601956"><img src="http://i.cmpnet.com/infoweek/1160/160IEweb2_impactchart.gif" alt="Web 2.0 Impact Chart" align="right" />Growing Pains: Can Web 2.0 Evolve Into An Enterprise Technology? &#8212; Web 2.0 &#8212; InformationWeek</a></p>
<blockquote><p>Wikis, mashups, social networking, and even Second Life can have a place in business, but they need to improve legacy interoperability&#8211;and IT needs to overcome its skepticism.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/can-web-20-evolve-into-an-enterprise-technology/35/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XPath Visualizer for Mozilla</title>
		<link>http://OurLil.com/blog/xpath-visualizer-for-mozilla/73/</link>
		<comments>http://OurLil.com/blog/xpath-visualizer-for-mozilla/73/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 21:51:28 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[nifty]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xpath]]></category>

		<guid isPermaLink="false">http://OurLil.com/blog/xpath-visualizer-for-mozilla/</guid>
		<description><![CDATA[The XPath Visualizer for Mozilla can help you build XPath queries without leaving your web browser.]]></description>
			<content:encoded><![CDATA[<p><a href="http://clay.freedomblogging.com/files/2007/10/xpath_visualizer_content.jpg" title="XPath Visualizer for Mozilla"><img src="http://clay.freedomblogging.com/files/2007/10/xpath_visualizer_content.jpg" alt="XPath Visualizer for Mozilla" align="right" border="0" height="178" hspace="10" width="250" /></a>The <a href="http://www.topxml.com/code/default.asp?p=3&amp;id=v20021221025528">XPath Visualizer for Mozilla</a> can help you build XPath queries without leaving your web browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/xpath-visualizer-for-mozilla/73/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo! UI Library: Graded Browser Support</title>
		<link>http://OurLil.com/blog/yahoo-ui-library-graded-browser-support/70/</link>
		<comments>http://OurLil.com/blog/yahoo-ui-library-graded-browser-support/70/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 17:31:04 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Interactive Team]]></category>
		<category><![CDATA[WebTech]]></category>
		<category><![CDATA[Windoze]]></category>

		<guid isPermaLink="false">http://OurLil.com/blog/yahoo-ui-library-graded-browser-support/</guid>
		<description><![CDATA[Yahoo! UI Library: Graded Browser Support A-Grade Browser Support is probably what we should adopt, as well.]]></description>
			<content:encoded><![CDATA[<p><a href="http://developer.yahoo.com/yui/articles/gbs/index.html">Yahoo! UI Library: Graded Browser Support</a></p>
<p>A-Grade Browser Support is probably what we should adopt, as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/yahoo-ui-library-graded-browser-support/70/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

