<?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>Bogdan Lungu &#187; JavaScript</title>
	<atom:link href="http://www.bogdan-net.com/archives/category/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bogdan-net.com</link>
	<description>Internet and Web Development</description>
	<lastBuildDate>Sun, 06 Sep 2009 16:37:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A JQuery plugin</title>
		<link>http://www.bogdan-net.com/archives/44</link>
		<comments>http://www.bogdan-net.com/archives/44#comments</comments>
		<pubDate>Wed, 21 Jan 2009 17:04:40 +0000</pubDate>
		<dc:creator>Lungu Bogdan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.bogdan-net.com/?p=44</guid>
		<description><![CDATA[This day I wanted to create a simple slide show composed from 5-7 images. I stopped over this plugin of Jquery called &#8220;jQuery Cycle Plugin&#8221;. It has a bunch of effects you can use and is very easy to install, run and configure for your needs.
http://malsup.com/jquery/cycle/
]]></description>
			<content:encoded><![CDATA[<p>This day I wanted to create a simple slide show composed from 5-7 images. I stopped over <a href="http://malsup.com/jquery/cycle/">this</a> plugin of Jquery called &#8220;jQuery Cycle Plugin&#8221;. It has a bunch of effects you can use and is very easy to install, run and configure for your needs.<br />
<a href="http://malsup.com/jquery/cycle/">http://malsup.com/jquery/cycle/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdan-net.com/archives/44/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Valid XHTML 1.0 Strict pages with flash on them</title>
		<link>http://www.bogdan-net.com/archives/33</link>
		<comments>http://www.bogdan-net.com/archives/33#comments</comments>
		<pubDate>Mon, 16 Jul 2007 20:31:56 +0000</pubDate>
		<dc:creator>Lungu Bogdan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Xhtml/CSS]]></category>

		<guid isPermaLink="false">http://www.bogdan-net.com/archives/33</guid>
		<description><![CDATA[Everyone knows there is a problem in having a valid XHTML 1.0 strict page when you want to use some flash on it. In another post I described how this can be done but unfortunately that thing wasn't complying with the XHTML 1.0 strict instead was fine for the pages validating using the Transitional Standard [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone knows there is a problem in having a valid XHTML 1.0 strict page when you want to use some flash on it. In <a href="http://www.bogdan-net.com/archives/8">another post</a> I described how this can be done but unfortunately that thing wasn't complying with the XHTML 1.0 strict instead was fine for the pages validating using the Transitional Standard of W3C XHTML specifications.<br />
Now I came back on this subject with a solution that fix the "Strict" problem, for this I appealed to a little help from Javascript using the getElemementById method.<br />
To insert a flash code in a web page according to the adobe specification you have to use a code almost similar with this one:</p>
<div class="igBar"><span id="lcode-4"><a href="#" onclick="javascript:showCodeTxt('code-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-4">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;object classid=<span style="color:#CC0000;">"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"</span> codebase=<span style="color:#CC0000;">"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"</span> width=<span style="color:#CC0000;">"590"</span> height=<span style="color:#CC0000;">"400"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &lt;param name=<span style="color:#CC0000;">"movie"</span> value=<span style="color:#CC0000;">"swf/flash.swf"</span>&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &lt;param name=<span style="color:#CC0000;">"quality"</span> value=<span style="color:#CC0000;">"high"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &lt;embed src=<span style="color:#CC0000;">"swf/flash.swf"</span> quality=<span style="color:#CC0000;">"high"</span> pluginspage=<span style="color:#CC0000;">"http://www.macromedia.com/go/getflashplayer"</span> type=<span style="color:#CC0000;">"application/x-shockwave-flash"</span> width=<span style="color:#CC0000;">"590"</span> height=<span style="color:#CC0000;">"400"</span>&gt;&lt;/embed&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &lt;/object&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p>
Above code will insert an flash movie with the width of 590 and the height of 400, the flash movie is called flash.swf and it is situated in the swf directory. This code will cause some errors (I will not tell you here which) and the page fails to validate.<br />
My method is to remove all the flash code from the page and to insert it using a small external javascript file.<br />
The javascript file we will call it flash.js and place it in the /js directory inside the site root and should have the following content: </p>
<div class="igBar"><span id="lcode-5"><a href="#" onclick="javascript:showCodeTxt('code-5'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-5">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">function flash<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">document.<span style="">getElementById</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">'flash'</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="">innerHTML</span> = <span style="color:#CC0000;">"&lt;object width=<span style="color:#000099; font-weight:bold;">\"</span>590<span style="color:#000099; font-weight:bold;">\"</span> height=<span style="color:#000099; font-weight:bold;">\"</span>400<span style="color:#000099; font-weight:bold;">\"</span> codebase=<span style="color:#000099; font-weight:bold;">\"</span>http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0<span style="color:#000099; font-weight:bold;">\"</span> classid=<span style="color:#000099; font-weight:bold;">\"</span>clsid:D27CDB6E-AE6D-11cf-96B8-444553540000<span style="color:#000099; font-weight:bold;">\"</span>&gt;&lt;param value=<span style="color:#000099; font-weight:bold;">\"</span>swf/flash.swf<span style="color:#000099; font-weight:bold;">\"</span> name=<span style="color:#000099; font-weight:bold;">\"</span>movie<span style="color:#000099; font-weight:bold;">\"</span>/&gt;&lt;param value=<span style="color:#000099; font-weight:bold;">\"</span>high<span style="color:#000099; font-weight:bold;">\"</span> name=<span style="color:#000099; font-weight:bold;">\"</span>quality<span style="color:#000099; font-weight:bold;">\"</span>/&gt;&lt;embed width=<span style="color:#000099; font-weight:bold;">\"</span>590<span style="color:#000099; font-weight:bold;">\"</span> height=<span style="color:#000099; font-weight:bold;">\"</span>400<span style="color:#000099; font-weight:bold;">\"</span> type=<span style="color:#000099; font-weight:bold;">\"</span>application/x-shockwave-flash<span style="color:#000099; font-weight:bold;">\"</span> pluginspage=<span style="color:#000099; font-weight:bold;">\"</span>http://www.macromedia.com/go/getflashplayer<span style="color:#000099; font-weight:bold;">\"</span> quality=<span style="color:#000099; font-weight:bold;">\"</span>high<span style="color:#000099; font-weight:bold;">\"</span> src=<span style="color:#000099; font-weight:bold;">\"</span>swf/flash.swf<span style="color:#000099; font-weight:bold;">\"</span>/&gt;&lt;/object&gt;"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
Be careful to write all this code on a single line because it is a string and a string in javascript can't be stretched on multiple lines.  As you see we are using the document.getElementById('flash').innerHTML method to write some content on a div with the id flash. The page should have the following code:</p>
<div class="igBar"><span id="lcode-6"><a href="#" onclick="javascript:showCodeTxt('code-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-6">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;!DOCTYPE html PUBLIC <span style="color:#CC0000;">"-//W3C//DTD XHTML 1.0 Strict//EN"</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"</span>&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;html&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;head&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;title&gt;Insert valid Flash in XHML <span style="color:#800000;color:#800000;">1</span>.<span style="color:#800000;color:#800000;">0</span> Strict&lt;/title&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;script type=<span style="color:#CC0000;">"text/javascript"</span> src=<span style="color:#CC0000;">"js/flash.js"</span>&gt;&nbsp; &nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/script&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;style type=<span style="color:#CC0000;">"text/css"</span>&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#flash <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">width: 590px;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">height: 400px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">background-color: #777;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/style&gt; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/head&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;body onload=<span style="color:#CC0000;">"flash()"</span>&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;h1&gt;Insert flash animation using javascript&lt;/h1&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;div id=<span style="color:#CC0000;">"flash"</span>&gt;&lt;/div&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/body&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/html&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p> <br />
The result will  display a valid page with a flash on it. As you see we include the javascript external file and we load the flash() function from it using the body event onload. The flash code is not displayed and everything we have at View source is the empty div.<br />
That's all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdan-net.com/archives/33/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SWFIR &#8211; great way to style images</title>
		<link>http://www.bogdan-net.com/archives/22</link>
		<comments>http://www.bogdan-net.com/archives/22#comments</comments>
		<pubDate>Sat, 10 Mar 2007 19:41:24 +0000</pubDate>
		<dc:creator>Lungu Bogdan</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.bogdan-net.com/archives/22</guid>
		<description><![CDATA[SWFIR (swf Image Replacement), it is a great way to add some style to images inside a web page escaping from the limitations imposed by the HTML but respecting the standard design concepts. This is done using JavaScript and Flash. Using swfir is simple and you don't need any advanced knowledge about Flash or JavaScript. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.swfir.com/" target="_blank">SWFIR</a> (swf Image Replacement), it is a great way to add some style to images inside a web page escaping from the limitations imposed by the HTML but respecting the standard design concepts. This is done using JavaScript and Flash. Using swfir is simple and you don't need any advanced knowledge about Flash or JavaScript. Just download the <a href="http://www.swfir.com/mint/pepper/tillkruess/downloads/download.php?uri=/files/swfir_v1.zip" target="_blank">swfir_v1.zip</a> and unzip it, then upload the 2 files (swfir.js and swfir.swf) from it to the same directory in your website. To make it work all you need to do is include the JavaScript file and then to choose the images that will be styled and features applied to them.<br />
The .js file need to be included in the "head" of the document:</p>
<div class="igBar"><span id="lphp-10"><a href="#" onclick="javascript:showCodeTxt('php-10'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-10">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;script type=<span style="color:#FF0000;">"text/javascript"</span> src=<span style="color:#FF0000;">"swfir.js"</span>&gt;&lt;/script&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p>
I will use some styling features to the following image:</p>
<div class="igBar"><span id="lphp-11"><a href="#" onclick="javascript:showCodeTxt('php-11'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-11">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;img src=<span style="color:#FF0000;">"picture.jpg"</span> alt=<span style="color:#FF0000;">"Here is some alt text"</span> id=<span style="color:#FF0000;">"pic2"</span> /&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p>
To call swfIR at work you have to use something like:</p>
<div class="igBar"><span id="lphp-12"><a href="#" onclick="javascript:showCodeTxt('php-12'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-12">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;script type=<span style="color:#FF0000;">"text/javascript"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">window.onload = <span style="color:#000000; font-weight:bold;">function</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/round"><span style="color:#000066;">round</span></a> = <span style="color:#000000; font-weight:bold;">new</span> swfir<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/round"><span style="color:#000066;">round</span></a>.specify<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'src'</span>, <span style="color:#FF0000;">'swfir.swf'</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/round"><span style="color:#000066;">round</span></a>.specify<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'border-color'</span>, <span style="color:#FF0000;">'#cccccc'</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/round"><span style="color:#000066;">round</span></a>.specify<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'border-width'</span>, <span style="color:#FF0000;">'1'</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/round"><span style="color:#000066;">round</span></a>.specify<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'border-radius'</span>, <span style="color:#FF0000;">'10'</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/round"><span style="color:#000066;">round</span></a>.specify<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'shadow-blur'</span>, <span style="color:#FF0000;">'5'</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/round"><span style="color:#000066;">round</span></a>.swap<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">"#pic2"</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;/script&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
The code above need to be situated inside the "body" section. I used some parameters (there are more that can be used/tested) to style my "pic2" image.<br />
The result is something like this: </p>
<p><img src="http://www.bogdan-net.com/swfir/swfir.jpg" alt="Example" /></p>
<p>It works fine in Firefox 2.0 and IE 6.0, unfortunately on some cumputers with SP2 failed to run in IE 6.0, nut sure why but you can write to the <a href="http://www.swfir.com/" target="_blank">SWFIR team</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdan-net.com/archives/22/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
