<?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>Emposha</title>
	<atom:link href="http://www.emposha.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.emposha.com</link>
	<description>Just another stupid wordpress blog ;)</description>
	<lastBuildDate>Sun, 07 Mar 2010 11:07:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>FCBKcomplete v 2.7.2</title>
		<link>http://www.emposha.com/javascript/fcbkcomplete.html</link>
		<comments>http://www.emposha.com/javascript/fcbkcomplete.html#comments</comments>
		<pubDate>Tue, 23 Feb 2010 15:39:57 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[Fancy facebook-like input]]></category>
		<category><![CDATA[multiselect]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=202</guid>
		<description><![CDATA[Fancy facebook-like dynamic inputs with auto complete &#038; pre added values. If you have any comments or requests, please post them and I will try to include all the requested features in the upcoming release.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Fancy facebook-like dynamic inputs with auto complete &amp; pre added values. If you have any comments or requests, please post them and I will try to include all the requested features in the upcoming release.</p>
<p><strong>Download</strong><strong>:</strong> <a href="http://github.com/emposha/FCBKcomplete/archives/master" target="_blank">Download FCBKcomplete</a></p>
<p><strong>Demo</strong><strong>:</strong> <a href="http://www.emposha.com/demo/fcbkcomplete_2/" target="_blank">Demo FCBKcomplete</a></p>
<p><strong>GitHub: <span style="font-weight: normal;"><a href="http://github.com/emposha/FCBKcomplete" target="_blank">http://github.com/emposha/FCBKcomplete</a></span></strong></p>
<p style="text-align: center;"><span style="color: #ff0000;"><strong>Please use github for bug report</strong></span></p>
<p><strong>Usage:</strong></p>
<blockquote><p><code><span style="color: black;">$(<span style="color: #a31515;">"element"</span>).fcbkcomplete({<br />
json_url: <span style="color: #a31515;">"fetched.txt"</span>,<br />
cache: <span style="color: #0000ff;">true</span>,<br />
filter_case: <span style="color: #0000ff;">true</span>,<br />
filter_hide: <span style="color: #0000ff;">true</span>,<br />
newel: <span style="color: #0000ff;">true</span><br />
});</span><br />
</code></p></blockquote>
<p>json_url                   - url to fetch json object<br />
cache                        - use cache<br />
height                       - maximum number of element shown before scroll will apear<br />
newel                        - show typed text like a element<br />
firstselected          - automaticly select first element from dropdown<br />
filter_case              - case sensitive filter<br />
filter_hide              - show/hide filtered items<br />
filter_selected      - filter selected items from list<br />
complete_text     - text for complete page<br />
maxshownitems - maximum numbers that will be shown at dropdown list (less better performance)<br />
maxitems              - maximum item that can be added to the list<br />
onselect                 - fire event on item select<br />
onremove             - fire event on item remove<br />
delay                     <span style="white-space: pre;"> <span style="white-space: normal;">-</span></span> delay between ajax request (bigger delay, lower server time request)</p>
<p><strong>Add item public method </strong>(how to use)<strong>:<br />
<span style="font-weight: normal;">$(&#8220;elem&#8221;).trigger(&#8220;addItem&#8221;,[{"title": "test", "value": "test"}]);</span></strong></p>
<p><strong>Updates:</strong></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 527px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- 2.6.1</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 527px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>fixed public method to use it $(&#8220;elem&#8221;).trigger(&#8220;addItem&#8221;,[{"title": "test", "value": "test"}]);</div>
<p>- 2.7.2<br />
* some minor bug fixed<br />
* minified version recompacted due some problems</p>
<p>- 2.7.1<br />
* bug fixed<br />
* ajax delay added thanks to http://github.com/dolorian</p>
<p>- 2.7<br />
* jquery 1.4 compability<br />
* item lock possability added by adding locked class to preadded option &lt;option value=&#8221;value&#8221; class=&#8221;selected locked&#8221;&gt;text&lt;/option&gt;<br />
* maximum item that can be added</p>
<p>- 2.6.1<br />
* fixed public method to use it $(&#8220;elem&#8221;).trigger(&#8220;addItem&#8221;,[{"title": "test", "value": "test"}]);</p>
<p>- 2.6  ie6/7 support fix added<br />
* added new public method addItem due request<br />
* added new options &#8220;firstselected&#8221; that you can set true/false to select first element on dropdown list<br />
* autoexpand input element added<br />
* removeItem bug fixed<br />
* and many more bug fixed</p>
<p>- 2.5 	removed selected=&#8221;selected&#8221; attribute due ie bug<br />
* element search algorithm changed<br />
* better performance fix added<br />
* fixed many small bugs<br />
* onselect event added<br />
* onremove event added</p>
<p>- 2.02 fixed fist element selected bug<br />
* fixed defaultfilter error bug</p>
<p>- 2.01 fixed bugs &amp; added features<br />
* fixed filter bug for preadded items<br />
*  focus on the input after selecting tag<br />
*  the element removed pressing backspace when the element is selected<br />
*  input tag in the control has a border in IE7<br />
*  added iterate over each match and apply the plugin separately<br />
*  set focus on the input after selecting tag</p>
<p>- 2.00 new version of fcbkcomplete<br />
* replace regular &#8220;select&#8221; element with new fancy facebook like selector<br />
* multiple elements support</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/fcbkcomplete.html/feed</wfw:commentRss>
		<slash:comments>205</slash:comments>
		</item>
		<item>
		<title>Most short method to find out if your browser is IE</title>
		<link>http://www.emposha.com/javascript/most-short-method-to-find-out-if-your-browser-is-ie.html</link>
		<comments>http://www.emposha.com/javascript/most-short-method-to-find-out-if-your-browser-is-ie.html#comments</comments>
		<pubDate>Sat, 09 Jan 2010 18:41:40 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=370</guid>
		<description><![CDATA[Only 5 byte and you can find out if it`s IE]]></description>
			<content:encoded><![CDATA[<p>Only 5 byte and you can find out if it`s IE</p>
<p>Example:</p>
<p>if(-[1,]){<br />
alert(&#8220;Not IE!&#8221;);<br />
}</p>
<p>Source: <a href="http://habrahabr.ru/blogs/javascript/80333">http://habrahabr.ru/blogs/javascript/80333</a> it`s in russian but still you can use google translate</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/most-short-method-to-find-out-if-your-browser-is-ie.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Internet Explorer &#8211; Do you want to display the nonsecure items?</title>
		<link>http://www.emposha.com/javascript/internet-explorer-do-you-want-to-display-the-nonsecure-items.html</link>
		<comments>http://www.emposha.com/javascript/internet-explorer-do-you-want-to-display-the-nonsecure-items.html#comments</comments>
		<pubDate>Thu, 17 Dec 2009 15:42:02 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[mixed content]]></category>
		<category><![CDATA[nonsecure items]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=360</guid>
		<description><![CDATA[Recently one of my friends asked me to check his e-shop on the fact that upon entering the SSL page, the buyer has received popup with message "Do you want to display the nonsecure items?" that and probably because of this message some buyers simply closes the browser window and leave the store without buying anything.]]></description>
			<content:encoded><![CDATA[<p>Recently one of my friends asked me to check his e-shop on the fact that upon entering the SSL page, the buyer has received popup with message &#8220;Do you want to display the nonsecure items?&#8221; that and probably because of this message some buyers simply closes the browser window and leave the store without buying anything.</p>
<p><span style="background-color: #ffffff;" title="Я сразу понял что скорее всего идет речь о какой нибудь забытой картинке которая обращалась напрямую конешно же согласился." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'">I immediately realized that most likely this popup message refers to some sort of forgotten images that appealed directly to http path, and of course I agreed to help him. </span><span style="background-color: #ffffff;" title="Но уже через полчаса я понял что я ошибся..." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'">But after half an hour I realized that I was mistaken &#8230; </span><span style="background-color: #ffffff;" title="все картинки грузулись через ССЛ." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'">all images loaded via SSL and nothing was pointed to http path directly. </span><span style="background-color: #ffffff;" title="После нескольких проверок фидлером я понял что проблема не настолько проста." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'">After several tests with fidler I realized that the problem is not so simple.</span></p>
<p><span style="background-color: #ffffff;" title="После нескольких проверок проблема была решена, и как назло ей оказалсь совсем банальная вещь..." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'">After several tests and few cups of coffee the problem was solved, and as luck would have it proved to be quite trivial thing &#8230;<br />
When flash object added to page there several default parameters added by default like &#8220;pluginspage&#8221; or &#8220;codebase&#8221; with pointing to adobe site throw http that may be interpreted as internet explorer as a request to the HTTP page. After simple change this problem was solved. </span></p>
<p><span style="background-color: #ffffff;" title="После нескольких проверок проблема была решена, и как назло ей оказалсь совсем банальная вещь..." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'">So if you encounter a similar problem simple change will help to solve this problem. For example:</span></p>
<p>from: pluginspage = &#8220;http:/ / www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash&#8221;</p>
<p><span style="background-color: #ffffff;" title="После нескольких проверок проблема была решена, и как назло ей оказалсь совсем банальная вещь..." onmouseover="this.style.backgroundColor='#ebeff9'" onmouseout="this.style.backgroundColor='#fff'">to: pluginspage = &#8220;/ / www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash&#8221;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/internet-explorer-do-you-want-to-display-the-nonsecure-items.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jqVideoBox v 1.00</title>
		<link>http://www.emposha.com/javascript/jqvideobox-v-1-00.html</link>
		<comments>http://www.emposha.com/javascript/jqvideobox-v-1-00.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 14:20:58 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Google Video]]></category>
		<category><![CDATA[iFilm]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[Metacafe]]></category>
		<category><![CDATA[videobox]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=351</guid>
		<description><![CDATA[jqVideoBox is jquery port of   Videobox(mootools) lightbox for videos Youtube, Metacafe, Google Video, iFilm and custom flash.]]></description>
			<content:encoded><![CDATA[<p>jqVideoBox is jquery port of  <a href="http://videobox-lb.sourceforge.net/" target="_blank">Videobox</a> (mootools) lightbox for videos Youtube, Metacafe, Google Video, iFilm and custom flash.</p>
<p><strong>Download</strong><strong>:</strong> <a href="http://github.com/emposha/jqVideoBox/archives/master" target="_blank">Download jqVideoBox v 1.00</a></p>
<p><strong>Demo</strong><strong>:</strong> <a href="../demo/jqvideobox/" target="_blank">Demo jqVideoBox </a></p>
<p><strong>Github:</strong> <a href="http://github.com/emposha/jqVideoBox">http://github.com/emposha/jqVideoBox</a></p>
<p><strong>Usage:</strong></p>
<blockquote><p><code><span style="color: black;">$(<span style="color: #0000ff;">document</span>).ready(<br />
<span style="color: #0000ff;">function</span>()<br />
{<br />
$(<span style="color: #a31515;">".vidbox"</span>).jqvideobox();<br />
}<br />
);</span><br />
</code></p></blockquote>
<p><strong>Parameters list:</strong></p>
<p>initialWidth        &#8211; Initial width of the box<br />
initialHeight       &#8211; Initial height of the box<br />
defaultWidth        &#8211; Default width of the box<br />
defaultHeight       &#8211; Default height of the box<br />
animateCaption      &#8211; Enable/Disable caption animation<br />
defaultOverLayFade  &#8211; Default overlay fade value<br />
flvplayer             &#8211; Path to default flash player</p>
<p><strong>Updates:</strong></p>
<p>- 1.00 ported from mootools plugin videbox (http://videobox-lb.sourceforge.net/) to jquery</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/jqvideobox-v-1-00.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Amazon: Windows 7 is &#8216;the biggest pre-order product of all time&#8217;</title>
		<link>http://www.emposha.com/microsoft/amazon-windows-7-is-the-biggest-pre-order-product-of-all-time.html</link>
		<comments>http://www.emposha.com/microsoft/amazon-windows-7-is-the-biggest-pre-order-product-of-all-time.html#comments</comments>
		<pubDate>Wed, 21 Oct 2009 16:43:13 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[harry potter]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=348</guid>
		<description><![CDATA[Windows 7 has beaten boy wizard Harry Potter to become the biggest pre-order product of all time in the UK, says Amazon.]]></description>
			<content:encoded><![CDATA[<p><strong>Windows 7 has beaten boy wizard Harry Potter to become the biggest pre-order product of all time in the UK, says Amazon.</strong></p>
<p style="text-align: center;"><strong><a href="http://www.emposha.com/wp-content/uploads/2009/10/windows7.jpg"><img class="aligncenter size-medium wp-image-349" title="windows7" src="http://www.emposha.com/wp-content/uploads/2009/10/windows7-300x172.jpg" alt="windows7" width="300" height="172" /></a><br />
</strong></p>
<p>The UK arm of the retail behemoth adds that the new operating system sold more copies in the first eight hours of its release in July than Vista did in its entire pre-order period. The new OS launches officially tomorrow (October 22).</p>
<p><a href="http://www.tgdaily.com/content/view/44377/140/" target="_new">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/microsoft/amazon-windows-7-is-the-biggest-pre-order-product-of-all-time.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2010 new logo</title>
		<link>http://www.emposha.com/microsoft/visual-studio-2010-new-logo.html</link>
		<comments>http://www.emposha.com/microsoft/visual-studio-2010-new-logo.html#comments</comments>
		<pubDate>Tue, 20 Oct 2009 08:48:37 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=345</guid>
		<description><![CDATA[What you think about it?]]></description>
			<content:encoded><![CDATA[<p>What you thing about it?</p>
<p style="text-align: center;"><a href="http://www.emposha.com/wp-content/uploads/2009/10/image-EBC0_4ADD5149.jpg"><img class="aligncenter size-medium wp-image-346" title="image-EBC0_4ADD5149" src="http://www.emposha.com/wp-content/uploads/2009/10/image-EBC0_4ADD5149-300x137.jpg" alt="image-EBC0_4ADD5149" width="300" height="137" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/microsoft/visual-studio-2010-new-logo.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>If you can figure this out.</title>
		<link>http://www.emposha.com/uncategorized/if-you-can-figure-this-out.html</link>
		<comments>http://www.emposha.com/uncategorized/if-you-can-figure-this-out.html#comments</comments>
		<pubDate>Tue, 22 Sep 2009 07:04:04 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[nice]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=342</guid>
		<description><![CDATA[If you can figure this out, you may have a future with Google.]]></description>
			<content:encoded><![CDATA[<p>&#8220;If you can figure this out, you may have a future with Google.&#8221; &#8211; nice one.</p>
<p><center><br />
<a href="http://www.emposha.com/wp-content/uploads/2009/09/881e598912fc648dcc0843725b5e89f8.jpg"><img class="aligncenter size-medium wp-image-343" title="881e598912fc648dcc0843725b5e89f8" src="http://www.emposha.com/wp-content/uploads/2009/09/881e598912fc648dcc0843725b5e89f8-232x300.jpg" alt="881e598912fc648dcc0843725b5e89f8" width="232" height="300" /></a></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/uncategorized/if-you-can-figure-this-out.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intel Commences 32 nm Chip Production</title>
		<link>http://www.emposha.com/uncategorized/intel-commences-32-nm-chip-production.html</link>
		<comments>http://www.emposha.com/uncategorized/intel-commences-32-nm-chip-production.html#comments</comments>
		<pubDate>Tue, 15 Sep 2009 15:28:28 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[32nm chip]]></category>
		<category><![CDATA[intel]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=337</guid>
		<description><![CDATA[Intel's foundries have commenced mass production of the company's first processors based on the 32 nm second generation high-K metal gate (HKMG) technologies.]]></description>
			<content:encoded><![CDATA[<p>Intel&#8217;s foundries have commenced mass production of the company&#8217;s first processors based on the 32 nm second generation high-K metal gate (HKMG) technologies.</p>
<p><a href="http://www.techpowerup.com/index.php?103791" target="_blank">full article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/uncategorized/intel-commences-32-nm-chip-production.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glow in the night sky</title>
		<link>http://www.emposha.com/uncategorized/glow-in-the-night-sky.html</link>
		<comments>http://www.emposha.com/uncategorized/glow-in-the-night-sky.html#comments</comments>
		<pubDate>Tue, 15 Sep 2009 08:16:50 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=331</guid>
		<description><![CDATA[The mysterious event occurred on September 9 in the night sky: many photographers spotted a strange glow coming from the space transportation system, better known as the <a href="http://en.wikipedia.org/wiki/Space_Shuttle">Space Shuttle.</a>]]></description>
			<content:encoded><![CDATA[<p>The mysterious event occurred on September 9 in the night sky: many photographers spotted a strange glow coming from the space transportation system, better known as the <a href="http://en.wikipedia.org/wiki/Space_Shuttle">Space Shuttle.</a></p>
<p>Naturally there arose many questions. Where? Why? Accident?</p>
<p>But as always, the true is much more prosaic: a visible mark is nothing like dumping the dirty water (urine). Such a bright trace, was due to the large number (about 68 kg) of the substance. So all we have seen quite a common phenomenon, by NASA spokesman. When water getting out to space, it discards into a cloud of tiny crystals and subsequently under the influence of sunlight evaporates and dissipates in space.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/uncategorized/glow-in-the-night-sky.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glen Murphy at Chromium close button</title>
		<link>http://www.emposha.com/uncategorized/glen-murphy-at-chromium-close-button.html</link>
		<comments>http://www.emposha.com/uncategorized/glen-murphy-at-chromium-close-button.html#comments</comments>
		<pubDate>Wed, 05 Aug 2009 21:21:53 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=326</guid>
		<description><![CDATA[Today noticed that at the point where you should be a button «close» fo the browser, there is picture of a young man (Glen Murphy). :):):)]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.emposha.com/wp-content/uploads/2009/08/apdymp.jpg"><img class="size-medium wp-image-327 alignnone" title="apdymp" src="http://www.emposha.com/wp-content/uploads/2009/08/apdymp-300x153.jpg" alt="apdymp" width="300" height="153" /></a></p>
<p>Today noticed that at the point where you should be a button «close» fo the browser, there is picture of a young man (Glen Murphy). <img src='http://www.emposha.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> :):)</p>
<p>Btw more info here http://code.google.com/p/chromium/issues/detail?id=18385</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/uncategorized/glen-murphy-at-chromium-close-button.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
