<?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>ScottKing.com.au &#187; SEO</title>
	<atom:link href="http://www.scottking.com.au/blog/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scottking.com.au/blog</link>
	<description>Confessions of an Interactive Developer</description>
	<lastBuildDate>Tue, 27 Jul 2010 14:30:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Part 5: Adding Google Analytics tracking to the SWFAddress include</title>
		<link>http://www.scottking.com.au/blog/2009/05/part-5-adding-google-analytics-tracking-to-the-swfaddres-include/</link>
		<comments>http://www.scottking.com.au/blog/2009/05/part-5-adding-google-analytics-tracking-to-the-swfaddres-include/#comments</comments>
		<pubDate>Sun, 31 May 2009 13:02:28 +0000</pubDate>
		<dc:creator>Scott King</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.scottking.com.au/blog/?p=371</guid>
		<description><![CDATA[Dynamic SEO tags for your Flash site using PHP
To include Google Analytics tracking into your deeplinked flash site configure your SWF address like this:

       &#60;script type="text/javascript"&#62;
            var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
   [...]]]></description>
			<content:encoded><![CDATA[<h3><a href="http://www.scottking.com.au/blog/2008/06/php-seo-tags-for-flash-sites/">Dynamic SEO tags for your Flash site using PHP</a></h3>
<p>To include Google Analytics tracking into your deeplinked flash site configure your SWF address like this:</p>
<pre class="html">
       &lt;script type="text/javascript"&gt;
            var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
            document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
        &lt;/script&gt;
        &lt;script type="text/javascript"&gt;
            var pageTracker = _gat._getTracker("UA-XXXXX-1");
        &lt;/script&gt;

        &lt;script type="text/javascript" src="swfobject/swfobject.js"&gt;&lt;/script&gt;
        &lt;script type="text/javascript" src="swfaddress/swfaddress.js"&gt;&lt;/script&gt;</pre>
<p>Substitute UA-XXXXX-1 with your actual UA number (available in your Google Analytics control panel), make sure you’ve got the var pagTracker set before including the swfobject.js &#038; swfaddress.js files.</p>
<p>Remove any original Google Analytics code you have in the page and you should be set.</p>
<p>In your Google Analytics control panel you will now see your deeplinks being tracked such as /#/page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottking.com.au/blog/2009/05/part-5-adding-google-analytics-tracking-to-the-swfaddres-include/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Part 2. Enabling back, forward and history buttons for your Flash site</title>
		<link>http://www.scottking.com.au/blog/2009/05/part-2-enabling-back-forward-and-history-buttons-for-your-flash-site/</link>
		<comments>http://www.scottking.com.au/blog/2009/05/part-2-enabling-back-forward-and-history-buttons-for-your-flash-site/#comments</comments>
		<pubDate>Fri, 22 May 2009 12:33:00 +0000</pubDate>
		<dc:creator>Scott King</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.scottking.com.au/blog/?p=54</guid>
		<description><![CDATA[Dynamic SEO tags for your Flash site using PHP
Step 1, lets get those back buttons, forward buttons and history working in our browsers navigational bars.
This functionality relies heavily on utilizing the excellent swfaddress script which you need to download from here (http://www.asual.com/download/?swfaddress).
1. Extract the swfaddress script to the same directory that your Flash .FLA&#8217;s live [...]]]></description>
			<content:encoded><![CDATA[<h3><a href="http://www.scottking.com.au/blog/2008/06/php-seo-tags-for-flash-sites/">Dynamic SEO tags for your Flash site using PHP</a></h3>
<p>Step 1, lets get those back buttons, forward buttons and history working in our browsers navigational bars.</p>
<p>This functionality relies heavily on utilizing the excellent swfaddress script which you need to <a href="http://www.hypergeneric.com/corpus/flash-history/assets/source/project.zip" target="_blank">download from here</a> (http://www.asual.com/download/?swfaddress).</p>
<p>1. Extract the swfaddress script to the same directory that your Flash .FLA&#8217;s live in, then setup your Flash file to use swfaddress. I&#8217;ll provide a quick guide here. if you require more information no the setup of swfaddress you can view the documentation online here: http://www.asual.com/swfaddress/docs/.</p>
<p>2. We need to include the swfaddress javascirpt support files into our HTML, so add the following two lines:</p>
<pre class="html">
<span><span class="tag">&lt;</span><span class="tag-name">script</span><span> </span><span class="attribute">type</span><span>=</span><span class="attribute-value">"text/javascript"</span><span> </span><span class="attribute">src</span><span>=</span><span class="attribute-value">"swfobject/swfobject.js"</span><span class="tag">&gt;</span><span class="tag">&lt;/</span><span class="tag-name">script</span><span class="tag">&gt;</span><span> </span><span class="tag">&lt;</span><span class="tag-name">script</span><span> </span><span class="attribute">type</span><span>=</span><span class="attribute-value">"text/javascript"</span><span> </span><span class="attribute">src</span><span>=</span><span class="attribute-value">"swfaddress/swfaddress.js"</span><span class="tag">&gt;</span><span class="tag">&lt;/</span><span class="tag-name">script</span><span class="tag">&gt;</span><span> </span></span>
</pre>
<p>So your HTML looks like:</p>
<pre class="html">&lt;?php
	function getDeepLink(){
		$requestedDeepLink=curPageURL();

		$requestedDeepLink = substr($requestedDeepLink,strrpos($requestedDeepLink,":80")+3);
		if(strrpos($requestedDeepLink,"/")==strlen($requestedDeepLink)-1){
			$requestedDeepLink = substr($requestedDeepLink,0,strlen($requestedDeepLink)-1);
		}
		$requestedDeepLink = substr($requestedDeepLink,strrpos($requestedDeepLink,"/"));
		$exclusions = array(".html", "/","index.php"); // URL extension exclusion list
		$requestedDeepLink = str_replace($exclusions, "", $requestedDeepLink); // remove extensions eg: "about.html" becomes "about"
	}

	function curPageURL() {
		$pageURL = 'http';
		if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
			$pageURL .= "://";
		if ($_SERVER["SERVER_PORT"] != "80") {
			$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
		} else {
			$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
		}
		return $pageURL;
	}

$requestedDeepLink=getDeepLink();

$title="Home";
$description="Meta Tag Description for Home";
$keywords="Meta Tag Keywords for Home";
$inPageContent="Some altenate content for non-flash users on Home";
$noscript="Some altenate content for non-javscript users on Home";
if($requestedDeepLink=="about"){
	// SEO Tags for About Me
	$title="About Me";
	$description="Meta Tag Description for About";
	$keywords="Meta Tag Keywords for About";
	$inPageContent="Some altenate content for non-flash users on About";
	$noscript="Some altenate content for non-javscript users on About";
	$inContent=true;
}
if($requestedDeepLink=="contact"){
	// SEO Tags for Contact Us
	$title="Contact Us";
	$description="Meta Tag Description for Contact ";
	$keywords="Meta Tag Keywords for Contact ";
	$inPageContent="Some altenate content for non-flash users on Contact ";
	$noscript="Some altenate content for non-javscript users on Contact ";
	$inContent=true;
}
?&gt;

&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt;
&lt;head&gt;
	&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /&gt;
	&lt;title&gt;&lt;?=$preTitle." ".$title?&gt;&lt;/title&gt;
	&lt;meta http-equiv="content-type" content="text/html; charset=utf-8" /&gt;
	&lt;meta name="Description" content="&lt;?=$description?&gt;"&gt;
	&lt;meta name="Keywords" content="&lt;?=$keywords?&gt;"&gt;
<strong>	<span><span class="tag">&lt;</span><span class="tag-name">script</span><span> </span><span class="attribute">type</span><span>=</span><span class="attribute-value">"text/javascript"</span><span> </span><span class="attribute">src</span><span>=</span><span class="attribute-value">"swfobject/swfobject.js"</span><span class="tag">&gt;</span><span class="tag">&lt;/</span><span class="tag-name">script</span><span class="tag">&gt;</span><span> </span><span class="tag">
</span></span>	<span><span class="tag">&lt;</span><span class="tag-name">script</span><span> </span><span class="attribute">type</span><span>=</span><span class="attribute-value">"text/javascript"</span><span> </span><span class="attribute">src</span><span>=</span><span class="attribute-value">"swfaddress/swfaddress.js"</span><span class="tag">&gt;</span><span class="tag">&lt;/</span><span class="tag-name">script</span><span class="tag">&gt;</span><span> </span></span></strong>
&lt;/head&gt;
&lt;body&gt;
	&lt;div id="flashcontent"&gt;
		&lt;?=$inPageContent?&gt;
		&lt;a href="http://www.adobe.com/go/getflashplayer"&gt;Click here&lt;/a&gt; to download the latest flash player to view this site.
	&lt;/div&gt;
	&lt;script type="text/javascript"&gt;
		// &lt;![CDATA[
		//INSERT YOUR SWF OBJECT EMBED CODE HERE
		// ]]&gt;
	&lt;/script&gt;
	&lt;noscript&gt;
		&lt;?=$noscript?&gt;
	&lt;/noscript&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>3. Now we need to move on to setting up the actual Flash .FLA. We will need to import the swfaddress class, this is done by simply adding this</code><code> ActionScript</code><code> line to the first frame of your Flash .FLA's:</p>
<p><em>import com.asual.swfaddress.*;  // SWFAddress code</em></p>
<p>4a. And we need to tell swfaddress when a user clicks on a navigational item in your Flash file. We do this by adding the following code to your Flash Navigational Buttons/MovieClips:</p>
<pre class="html">
<span><span class="special">this</span><span>.onRelease = </span><span class="keyword">function</span><span>() { </span></span>

<span> SWFAddress.setValue(<span class="string">'<em><strong>DEEPLINK_URL</strong></em>'</span><span>); </span></span>

//Here you can add the rest of your navigational logic, eg if you need to load a new SWF called example.swf into a MovieClip called "loaderClip", you might add the following line:

// loaderClip.loadMovie("example.swf");

<span>}
</span>
</pre>
<p>4b. Substitute your required deeplink URL into the "<span><span class="string"><em><strong>DEEPLINK_URL</strong></em></span></span>" section. For example if this code was going on the button for your "About Me" section of your Flash site, the code would look something like:</p>
<pre class="html">
<span><span class="special">this</span><span>.onRelease = </span><span class="keyword">function</span><span>() { </span></span>

<span> SWFAddress.setValue(<span class="string">'<em><strong>/about-me/</strong><strong></strong></em>'</span><span>); </span></span>

<em>//Here you can add the rest of your navigational logic, eg if you need to load a new SWF called example.swf into a MovieClip called "loaderClip", you might add the following line:</em>

<em>// loaderClip.loadMovie("example.swf");</em>

<span>} </span>
</pre>
<p>4c. You can then add your ActionScript that you would call normally to load the About Me section of your Flash movie, this might look eg if you need to load a new SWF called example.swf into a MovieClip called "loaderClip", you might add the following line:</p>
<p><em><strong>loaderClip.loadMovie("about-me.swf");</strong></em></p>
<p>So the code for your About Me button now looks like this:</p>
<pre class="html">
<span><span class="special">this</span><span>.onRelease = </span><span class="keyword">function</span><span>() { </span></span>

<span> SWFAddress.setValue(<span class="string">'<em><strong>/about-me/</strong></em>'</span><span>); </span></span>

<em><strong>loaderClip.loadMovie("about-me.swf");</strong></em>

<span>} </span>
</pre>
<p>Repeat steps 4a to 4c for each of your navigational buttons. eg, your "Portfolio" section might look like this:</p>
<pre class="html">
<span><span class="special">this</span><span>.onRelease = </span><span class="keyword">function</span><span>() { </span></span>

<span> SWFAddress.setValue(<span class="string">'<em><strong>/my-work/portfolio/</strong></em>'</span><span>); </span></span>

<em><strong> _root.gotoAndPlay("portfolio");</strong></em>

<em><strong> _root.breadCrumbs.text="My Work &gt; Portfolio";</strong></em>

<span>} </span>
</pre>
<p>So now every time a user clicks on a navigational button in your Flash .SWF, the <span><em>SWFAddress.setValue(</em><span><em>); </em>function will be called and <em>swfaddress </em>will create an entry in your browsers History and add the previous content section to the browsers Back button.<br />
</span></span></p>
<p>You can now test your Flash movie by previewing it in your browser. Now when you click on a button to load a new section of your Flash file you'll notice the browser's URL has the <span><span class="string"><em><strong>DEEPLINK_URL </strong></em>appended to the URL. </span></span></p>
<p>eg: from the example above, clicking the "Portfolio" section will change the URL from:</p>
<p><em>http://www.example.com</em></p>
<p>to:</p>
<p><em>http://www.example.com/#<span><span class="string">/my-work/portfolio/</span></span></em></p>
<p>or clicking our "About Me" section will produce:</p>
<p><em>http://www.example.com/#<span><span class="string">/about-me/</span></span></em></p>
<p>If you open up your browsers History bar, you may also notice some new entries going in each time you hit a your nav buttons. You may also notice that your browsers Back and Forward buttons become active but clicking on them doesnt load the previous section - but don't worry we're just about to address that.</p>
<p>Summary</p>
<p>Now we have our Flash file telling the browser each time a user clicks on a section in your Flash file. Next we need to a way for the browser to tell the Flash file that the user has clicked the Back or Forward button in the browser window.</p>
<p>5. Making your Back and Forward buttons work.</p>
<p>Tell the Flash file that the user has clicked the Back or Forward button in the browser window. We do this by adding an SWFAddress.onChange listener to our ActionScript, so copy and paste the following below the import statement we added in step 2:</p>
<p><em>import com.asual.swfaddress.*;  // SWFAddress code</em></p>
<p><strong><em><span><span>SWFAddress.onChange = </span><span class="keyword">function</span><span>() { </span></span></em></strong></p>
<p><em><strong>var sectionToLoad = SWFAddress.getValue();</strong></em></p>
<p><strong><em><span><span> </span></span></em></strong></p>
<p><span><strong><em>}</em></strong></span></p>
<p>Now, everytime a user click the Back or Forward button in the browser, this function will be called inside your Flash .SWF and the variable <em><strong>sectionToLoad</strong></em> will contain the section that the browser expects to load. For example if the user was on the "About Me" section, then clicked the Flash navigation button to load the "Portfolio" section and then hit the Browsers Back button, the <em><strong>sectionToLoad</strong></em> variable would contain the "about-me" as this is the section the Browser is trying to load.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottking.com.au/blog/2009/05/part-2-enabling-back-forward-and-history-buttons-for-your-flash-site/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Part 3. Add scrollbars for small browser windows</title>
		<link>http://www.scottking.com.au/blog/2009/05/part-3-add-scrollbars-for-small-browser-windows/</link>
		<comments>http://www.scottking.com.au/blog/2009/05/part-3-add-scrollbars-for-small-browser-windows/#comments</comments>
		<pubDate>Fri, 22 May 2009 12:22:41 +0000</pubDate>
		<dc:creator>Scott King</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.scottking.com.au/blog/?p=55</guid>
		<description><![CDATA[Dynamic SEO tags for your Flash site using PHP
For this step, we&#8217;re going to use swfforcesize, a small script which will do most of the ground work for us.
Firstly download and extract the script.
&#60;html&#62;
&#60;head&#62;
&#60;title&#62;Full Screen Flash How To&#60;/title&#62;
&#60;meta name="description" content="Google Optimized Description"&#62;
&#60;meta name="keywords" content="Google Optimized Keywords"&#62;

&#60;script type="text/javascript" src="swfobject.js"&#62;&#60;/script&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;div id="container"&#62;
&#60;script type="text/javascript"&#62;
// &#60;![CDATA[

var container = new SWFObject("[FLASH [...]]]></description>
			<content:encoded><![CDATA[<h3><a href="http://www.scottking.com.au/blog/2008/06/php-seo-tags-for-flash-sites/">Dynamic SEO tags for your Flash site using PHP</a></h3>
<p>For this step, we&#8217;re going to use swfforcesize, a small script which will do most of the ground work for us.</p>
<p>Firstly download and extract the script.</p>
<pre class="html">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Full Screen Flash How To&lt;/title&gt;
&lt;meta name="description" content="Google Optimized Description"&gt;
&lt;meta name="keywords" content="Google Optimized Keywords"&gt;

&lt;script type="text/javascript" src="swfobject.js"&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id="container"&gt;
&lt;script type="text/javascript"&gt;
// &lt;![CDATA[

var container = new SWFObject("[FLASH MOVIE].swf", "source", "100%", "100%", "8");

// ]]&gt;
&lt;/script&gt;
&lt;noscript&gt;
Google Optimised Description and alternate content
&lt;/noscript&gt;
&lt;div id="flashcontent"&gt;
More Google Optimised Descriptions and alternate content

&lt;strong&gt;You need to upgrade your Flash Player&lt;/strong&gt;&lt;br&gt;
&lt;a href="http://www.adobe.com/go/getflashplayer"&gt;Click here&lt;/a&gt; to download the latest flash player to view this site. &lt;br&gt;&lt;br&gt;

This is replaced by the Flash content.
Place your alternate content here and users without the Flash plugin or with
Javascript turned off will see this.
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.scottking.com.au/blog/2009/05/part-3-add-scrollbars-for-small-browser-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Part 4. Flash alertnate content, White hat usage and source code</title>
		<link>http://www.scottking.com.au/blog/2009/05/part-4-flash-alertnate-content-white-hat-usage-and-source-code/</link>
		<comments>http://www.scottking.com.au/blog/2009/05/part-4-flash-alertnate-content-white-hat-usage-and-source-code/#comments</comments>
		<pubDate>Fri, 22 May 2009 12:22:12 +0000</pubDate>
		<dc:creator>Scott King</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.scottking.com.au/blog/?p=56</guid>
		<description><![CDATA[Dynamic SEO tags for your Flash site using PHP

Best Uses of Flash &#8211; http://mezzoblue.com/archives/2008/05/05/image_replac/

See point #2 in regards to sIFR, an ideologically similar concept to CSS image replacement, which suffers from the same potential abuse vectors. As this is a Google blog, it appears sIFR has an official blessing. Also mentioned in this article is [...]]]></description>
			<content:encoded><![CDATA[<h3><a href="http://www.scottking.com.au/blog/2008/06/php-seo-tags-for-flash-sites/">Dynamic SEO tags for your Flash site using PHP</a></h3>
<dl>
<dt><a href="http://googlewebmastercentral.blogspot.com/2007/07/best-uses-of-flash.html">Best Uses of Flash &#8211; http://mezzoblue.com/archives/2008/05/05/image_replac/<br />
</a></dt>
<dd>See point #2 in regards to sIFR, an ideologically similar concept to CSS image replacement, which suffers from the same potential abuse vectors. As this is a Google blog, it appears sIFR has an official blessing. Also mentioned in this article is a similar guideline to the previous one: show users and the Googlebot the same content. Sensing a theme here?</dd>
<dd> </dd>
<dd> </dd>
</dl>
<p>&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221; xml:lang=&#8221;en&#8221; lang=&#8221;en&#8221;&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=iso-8859-1&#8243; /&gt;<br />
&lt;title&gt;&lt;?=$globalPageTitle.&#8221; &#8220;.$title?&gt;&lt;/title&gt;<br />
&lt;meta http-equiv=&#8221;content-type&#8221; content=&#8221;text/html; charset=utf-8&#8243; /&gt;<br />
&lt;meta name=&#8221;Description&#8221; content=&#8221;&lt;?=$description?&gt;&#8221;&gt;<br />
&lt;meta name=&#8221;Keywords&#8221; content=&#8221;&lt;?=$keywords?&gt;&#8221;&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
var gaJsHost = ((&#8220;https:&#8221; == document.location.protocol) ? &#8220;https://ssl.&#8221; : &#8220;http://www.&#8221;);<br />
document.write(unescape(&#8220;%3Cscript src=&#8217;&#8221; + gaJsHost + &#8220;google-analytics.com/ga.js&#8217; type=&#8217;text/javascript&#8217;%3E%3C/script%3E&#8221;));<br />
&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
var pageTracker = _gat._getTracker(&#8220;UA-1694586-18&#8243;);<br />
pageTracker._initData();<br />
//pageTracker._trackPageview();<br />
&lt;/script&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/js/swfobject.js&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/js/swfaddress.js?tracker=pageTracker._trackPageview&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/js/swfmacmousewheel.js&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/js/swfforcesize.js&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;style type=&#8221;text/css&#8221;&gt;</p>
<p>/* hide from ie on mac \*/<br />
html {<br />
height: 100%;<br />
overflow: auto;<br />
}</p>
<p>#flashcontent {<br />
position: absolute;<br />
top: 0px;<br />
left: 0px;<br />
height: 100%;<br />
width:  100%;<br />
}<br />
/* end hide */</p>
<p>body {<br />
height: 100%;<br />
margin: 0;<br />
padding: 0;<br />
background: #f2f1ed url(&#8216;/images/bg.jpg&#8217;) center center repeat-x; margin:0px; padding:0px;<br />
}</p>
<p>*{<br />
margin: 0;<br />
padding: 0;<br />
}</p>
<p>&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div id=&#8221;flashcontent&#8221;&gt;<br />
&lt;?=$inPageContent?&gt;<br />
&lt;a href=&#8221;http://www.adobe.com/go/getflashplayer&#8221;&gt;&lt;img src=&#8221;/get_flash_page.gif&#8221; border=&#8221;0&#8243;&gt;&lt;/a&gt;&lt;br&gt;<br />
&lt;a href=&#8221;http://www.adobe.com/go/getflashplayer&#8221;&gt;Click here&lt;/a&gt; to download the latest flash player to view this site.<br />
&lt;/div&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
// &lt;![CDATA[</p>
<p>var so = new SWFObject("/site_final7.swf", "source", "100%", "100%", "8");</p>
<p>so.useExpressInstall("/js/expressinstall.swf");<br />
so.addParam("menu", "false");<br />
so.addParam("scale", "noscale");</p>
<p>if( so.write("flashcontent") ){<br />
var forcesize = new SWFForceSize(so, 975, 620);<br />
}</p>
<p>SWFAddress.setValue('&lt;?=$requestedDeepLink."/"?&gt;'); // Trigger SWFAddress event to load correct flash section, add "/"<br />
// ]]&gt;<br />
&lt;/script&gt;<br />
&lt;noscript&gt;<br />
&lt;?=$noscript?&gt;<br />
&lt;/noscript&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottking.com.au/blog/2009/05/part-4-flash-alertnate-content-white-hat-usage-and-source-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sanity.com.au Build Preview</title>
		<link>http://www.scottking.com.au/blog/2009/05/sanitycomau-build-preview/</link>
		<comments>http://www.scottking.com.au/blog/2009/05/sanitycomau-build-preview/#comments</comments>
		<pubDate>Fri, 08 May 2009 02:53:58 +0000</pubDate>
		<dc:creator>Scott King</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.scottking.com.au/blog/?p=271</guid>
		<description><![CDATA[This is the new Sanity.com.au revamp I am presently working on. Being a large consumer site I built the site with all best practice and progressive enhancement techniques available.
Site Preview:
http://www.scottking.com.au/portfolio/sanity.com.au/
Themed version:
http://www.scottking.com.au/portfolio/sanity.com.au/index_batman.html
Technology:

xHTML 1.0 Strict
Custom Styled Form Elements
sIfr Flash Font Replacement
jQuery Animation
swfObject Flash Embed
CSS class based Themes

Features:

Passes w3c Validation &#8211; http://validator.w3.org/check?uri=http%3A%2F%2Fwww.scottking.com.au%2Fportfolio%2Fsanity.com.au%2F&#38;charset=(detect+automatically)&#38;doctype=Inline&#38;group=0
No CSS Hacks or browser targeting
Interchangeable Themes
Progressive [...]]]></description>
			<content:encoded><![CDATA[<p>This is the new Sanity.com.au revamp I am presently working on. Being a large consumer site I built the site with all best practice and progressive enhancement techniques available.</p>
<p>Site Preview:</p>
<p><a href="http://www.scottking.com.au/portfolio/sanity.com.au/" target="_blank">http://www.scottking.com.au/portfolio/sanity.com.au/</a></p>
<p>Themed version:</p>
<p><a href="http://www.scottking.com.au/portfolio/sanity.com.au/index_batman.html" target="_blank">http://www.scottking.com.au/portfolio/sanity.com.au/index_batman.html</a></p>
<p><strong>Technology:</strong></p>
<ul>
<li>xHTML 1.0 Strict</li>
<li>Custom Styled Form Elements</li>
<li>sIfr Flash Font Replacement</li>
<li>jQuery Animation</li>
<li>swfObject Flash Embed</li>
<li>CSS class based Themes</li>
</ul>
<p><strong>Features:</strong></p>
<ul>
<li>Passes w3c Validation &#8211; <a href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.scottking.com.au%2Fportfolio%2Fsanity.com.au%2F&amp;charset=(detect+automatically)&amp;doctype=Inline&amp;group=0" target="_blank">http://validator.w3.org/check?uri=http%3A%2F%2Fwww.scottking.com.au%2Fportfolio%2Fsanity.com.au%2F&amp;charset=(detect+automatically)&amp;doctype=Inline&amp;group=0</a></li>
<li>No CSS Hacks or browser targeting</li>
<li>Interchangeable Themes</li>
<li>Progressive Enhancement &#8211; All major functionality works with JavaScript, CSS or Flash disabled.</li>
<li>Search Engine Optimisation</li>
<li>Tested in: Firefox 3 &amp; 2, IE 6, 7 &amp; 8, Opera, Safari, Google Chrome.</li>
</ul>

<a href='http://www.scottking.com.au/blog/2009/05/sanitycomau-build-preview/home/' title='home'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/05/home-150x150.jpg" class="attachment-thumbnail" alt="home 150x150 Sanity.com.au Build Preview" title="home" /></a>
<a href='http://www.scottking.com.au/blog/2009/05/sanitycomau-build-preview/sani5000_r5_home_batman/' title='sani5000_r5_home_batman'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/05/sani5000_r5_home_batman-150x150.jpg" class="attachment-thumbnail" alt="sani5000 r5 home batman 150x150 Sanity.com.au Build Preview" title="sani5000_r5_home_batman" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.scottking.com.au/blog/2009/05/sanitycomau-build-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Launch &#8211; Budget Greenslips v2.0</title>
		<link>http://www.scottking.com.au/blog/2009/03/site-launch-budget-greenslips-v20/</link>
		<comments>http://www.scottking.com.au/blog/2009/03/site-launch-budget-greenslips-v20/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 01:11:10 +0000</pubDate>
		<dc:creator>Scott King</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.scottking.com.au/blog/?p=209</guid>
		<description><![CDATA[With all the development work I don&#8217;t get much time to design these days, but for Budget Greenslips I decided to break out the Stylus and updated the design to a more modern, web 2.0(ish) design. I then rebuilt the site using strict CSS and xHTML, re-optimised for maximum SEO.
Take a look:
http://www.budgetgreenslips.com.au/
Technology:

Photoshop
PHP
xHTML, CSS
JavaScript

]]></description>
			<content:encoded><![CDATA[<p>With all the development work I don&#8217;t get much time to design these days, but for Budget Greenslips I decided to break out the Stylus and updated the design to a more modern, web 2.0(ish) design. I then rebuilt the site using strict CSS and xHTML, re-optimised for maximum SEO.</p>

<a href='http://www.scottking.com.au/blog/2009/03/site-launch-budget-greenslips-v20/budgetgreenslips_com_au_home/' title='budgetgreenslips_com_au_home'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/03/budgetgreenslips_com_au_home-150x150.jpg" class="attachment-thumbnail" alt="budgetgreenslips com au home 150x150 Site Launch   Budget Greenslips v2.0" title="budgetgreenslips_com_au_home" /></a>
<a href='http://www.scottking.com.au/blog/2009/03/site-launch-budget-greenslips-v20/budgetgreenslips_com_au_fleet/' title='budgetgreenslips_com_au_fleet'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/03/budgetgreenslips_com_au_fleet-150x150.jpg" class="attachment-thumbnail" alt="budgetgreenslips com au fleet 150x150 Site Launch   Budget Greenslips v2.0" title="budgetgreenslips_com_au_fleet" /></a>
<a href='http://www.scottking.com.au/blog/2009/03/site-launch-budget-greenslips-v20/budgetgreenslips_com_au_about/' title='budgetgreenslips_com_au_about'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/03/budgetgreenslips_com_au_about-150x150.jpg" class="attachment-thumbnail" alt="budgetgreenslips com au about 150x150 Site Launch   Budget Greenslips v2.0" title="budgetgreenslips_com_au_about" /></a>

<p>Take a look:</p>
<p><a href="http://www.budgetgreenslips.com.au/" target="_blank">http://www.budgetgreenslips.com.au/</a></p>
<p>Technology:</p>
<ul>
<li>Photoshop</li>
<li>PHP</li>
<li>xHTML, CSS</li>
<li>JavaScript</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.scottking.com.au/blog/2009/03/site-launch-budget-greenslips-v20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Midori&#8217;s &#8220;Blend a Bartender&#8221;</title>
		<link>http://www.scottking.com.au/blog/2009/01/midoris-blend-a-bartender/</link>
		<comments>http://www.scottking.com.au/blog/2009/01/midoris-blend-a-bartender/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 07:54:03 +0000</pubDate>
		<dc:creator>Scott King</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Past Work]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.scottking.com.au/blog/?p=152</guid>
		<description><![CDATA[This is a new section I put together for the Midori Welcome to Greenland web site which we built a while back, this was built with Jonathan Miranda doing a fantastic job on the design.
This new section allows you to create your very own bartender out of an array of parts including body type, hair [...]]]></description>
			<content:encoded><![CDATA[<p>This is a new section I put together for the Midori Welcome to Greenland web site which we built a while back, this was built with Jonathan Miranda doing a fantastic job on the design.</p>
<p>This new section allows you to create your very own bartender out of an array of parts including body type, hair type, skin tone &#8211; you can even give your bartender some bling!</p>
<p>It features advanced deeplinking functions, a Send To Friend function that allows you to send your &#8220;perfect bartender&#8221; to an unsuspecting friend and flv playback.</p>
<p>Technologies:</p>
<ul>
<li>Flash AS2</li>
<li>PHP</li>
<li>Fusekit</li>
<li>SWF Object</li>
<li>JavaScript</li>
</ul>
<p>Try it for yourself here:</p>
<p><a href="http://www.welcometogreenland.com.au/#/locals">http://www.welcometogreenland.com.au/#/locals</a></p>
<p>Or</p>
<p><a href="http://www.welcometogreenland.com.au/?creatorName=Scott+King&amp;body=handles&amp;hair=afro&amp;shirt=shirtless&amp;skinT=light&amp;acc1=shades&amp;acc2=mo&amp;acc3=bling&amp;drink=punch&amp;yourName=Scott+King&amp;yourEmail=scott@scottking.com.au#/locals">View my Bartender</a></p>

<a href='http://www.scottking.com.au/blog/2009/01/midoris-blend-a-bartender/midori_bartender1/' title='midori_bartender1'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/midori_bartender1-150x150.jpg" class="attachment-thumbnail" alt="midori bartender1 150x150 Midoris Blend a Bartender" title="midori_bartender1" /></a>
<a href='http://www.scottking.com.au/blog/2009/01/midoris-blend-a-bartender/midori_bartender2/' title='midori_bartender2'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/midori_bartender2-150x150.jpg" class="attachment-thumbnail" alt="midori bartender2 150x150 Midoris Blend a Bartender" title="midori_bartender2" /></a>
<a href='http://www.scottking.com.au/blog/2009/01/midoris-blend-a-bartender/midori_bartender3/' title='midori_bartender3'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/midori_bartender3-150x150.jpg" class="attachment-thumbnail" alt="midori bartender3 150x150 Midoris Blend a Bartender" title="midori_bartender3" /></a>
<a href='http://www.scottking.com.au/blog/2009/01/midoris-blend-a-bartender/midori_bartender4/' title='midori_bartender4'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/midori_bartender4-150x150.jpg" class="attachment-thumbnail" alt="midori bartender4 150x150 Midoris Blend a Bartender" title="midori_bartender4" /></a>
<a href='http://www.scottking.com.au/blog/2009/01/midoris-blend-a-bartender/midori_bartender5/' title='midori_bartender5'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/midori_bartender5-150x150.jpg" class="attachment-thumbnail" alt="midori bartender5 150x150 Midoris Blend a Bartender" title="midori_bartender5" /></a>
<a href='http://www.scottking.com.au/blog/2009/01/midoris-blend-a-bartender/midori_bartender6/' title='midori_bartender6'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/midori_bartender6-150x150.jpg" class="attachment-thumbnail" alt="midori bartender6 150x150 Midoris Blend a Bartender" title="midori_bartender6" /></a>
<a href='http://www.scottking.com.au/blog/2009/01/midoris-blend-a-bartender/midori_bartender11/' title='midori_bartender11'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/midori_bartender11-150x150.jpg" class="attachment-thumbnail" alt="midori bartender11 150x150 Midoris Blend a Bartender" title="midori_bartender11" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.scottking.com.au/blog/2009/01/midoris-blend-a-bartender/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BT Super for Life</title>
		<link>http://www.scottking.com.au/blog/2009/01/bt-super-for-life/</link>
		<comments>http://www.scottking.com.au/blog/2009/01/bt-super-for-life/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 12:13:04 +0000</pubDate>
		<dc:creator>Scott King</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.scottking.com.au/blog/?p=141</guid>
		<description><![CDATA[This is a web site I developed for financial service provider BT Financial Group (part of Westpac), quite a nice looking site, features lots of SEO, a dynamic Flash intro panel with full CMS. A nice group to work for and a good job all around.
Technologies:

Flash
ActionScript 3
CSS
JavaScript
Classic ASP
Advanced SEO

You can see it in action here:
http://www.btsuperforlife.com.au/
]]></description>
			<content:encoded><![CDATA[<p>This is a web site I developed for financial service provider BT Financial Group (part of Westpac), quite a nice looking site, features lots of SEO, a dynamic Flash intro panel with full CMS. A nice group to work for and a good job all around.</p>
<p>Technologies:</p>
<ul>
<li>Flash</li>
<li>ActionScript 3</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Classic ASP</li>
<li>Advanced SEO</li>
</ul>
<p>You can see it in action here:</p>
<p><a href="http://www.btsuperforlife.com.au/">http://www.btsuperforlife.com.au/</a></p>

<a href='http://www.scottking.com.au/blog/2009/01/bt-super-for-life/bt_financial_group3/' title='bt_financial_group3'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/bt_financial_group3-150x150.jpg" class="attachment-thumbnail" alt="bt financial group3 150x150 BT Super for Life" title="bt_financial_group3" /></a>
<a href='http://www.scottking.com.au/blog/2009/01/bt-super-for-life/bt_financial_group4/' title='bt_financial_group4'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/bt_financial_group4-150x150.jpg" class="attachment-thumbnail" alt="bt financial group4 150x150 BT Super for Life" title="bt_financial_group4" /></a>
<a href='http://www.scottking.com.au/blog/2009/01/bt-super-for-life/bt_financial_group5/' title='bt_financial_group5'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/bt_financial_group5-150x150.jpg" class="attachment-thumbnail" alt="bt financial group5 150x150 BT Super for Life" title="bt_financial_group5" /></a>
<a href='http://www.scottking.com.au/blog/2009/01/bt-super-for-life/bt_financial_group11/' title='bt_financial_group11'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/bt_financial_group11-150x150.jpg" class="attachment-thumbnail" alt="bt financial group11 150x150 BT Super for Life" title="bt_financial_group11" /></a>
<a href='http://www.scottking.com.au/blog/2009/01/bt-super-for-life/bt_financial_group2/' title='bt_financial_group2'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2009/01/bt_financial_group2-150x150.jpg" class="attachment-thumbnail" alt="bt financial group2 150x150 BT Super for Life" title="bt_financial_group2" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.scottking.com.au/blog/2009/01/bt-super-for-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Googles new browser launches tomorrow</title>
		<link>http://www.scottking.com.au/blog/2008/09/googles-new-browser-launches-tomorrow/</link>
		<comments>http://www.scottking.com.au/blog/2008/09/googles-new-browser-launches-tomorrow/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 00:11:18 +0000</pubDate>
		<dc:creator>Scott King</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.scottking.com.au/blog/?p=88</guid>
		<description><![CDATA[Google&#8217;s &#8220;Chrome&#8221; Browser launches globally tomorrow. It will be open-source and knowing Google it will be in Beta for a sometime but should adhere to standards better then most other commercial browsers out there.
http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html
]]></description>
			<content:encoded><![CDATA[<p>Google&#8217;s &#8220;Chrome&#8221; Browser launches globally tomorrow. It will be open-source and knowing Google it will be in Beta for a sometime but should adhere to standards better then most other commercial browsers out there.</p>
<p><a href="http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html" target="_blank">http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scottking.com.au/blog/2008/09/googles-new-browser-launches-tomorrow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quitnow Site Launch</title>
		<link>http://www.scottking.com.au/blog/2008/07/quitnow-site-launch/</link>
		<comments>http://www.scottking.com.au/blog/2008/07/quitnow-site-launch/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 13:57:52 +0000</pubDate>
		<dc:creator>Scott King</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.scottking.com.au/blog/?p=79</guid>
		<description><![CDATA[This site I built for the Australian Government, I was given the requirment that the site would have to be built on top of a Lotus Notes CMS. For this reason alone I decided to absolutely separate the presentation layer into pure CSS and just have the Notes CMS server the content DIV&#8217;s. It worked [...]]]></description>
			<content:encoded><![CDATA[<p>This site I built for the Australian Government, I was given the requirment that the site would have to be built on top of a Lotus Notes CMS. For this reason alone I decided to absolutely separate the presentation layer into pure CSS and just have the Notes CMS server the content DIV&#8217;s. It worked a charm, the site looks great even though it is based on an aging CMS.</p>
<p>Check it out at:</p>
<p><a href="http://www.quitnow.info.au" target="_blank">http://www.quitnow.info.au</a></p>

<a href='http://www.scottking.com.au/blog/2008/07/quitnow-site-launch/fireshot-capture-3-quitnow-national-tobacco-campaign-www_quitnow_info_au_internet_quitnow_publishing_nsf_content_national-tobacco-campaign-lp/' title='fireshot-capture-3-quitnow-national-tobacco-campaign-www_quitnow_info_au_internet_quitnow_publishing_nsf_content_national-tobacco-campaign-lp'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2008/07/fireshot-capture-3-quitnow-national-tobacco-campaign-www_quitnow_info_au_internet_quitnow_publishing_nsf_content_national-tobacco-campaign-lp-150x150.png" class="attachment-thumbnail" alt="fireshot capture 3 quitnow national tobacco campaign www quitnow info au internet quitnow publishing nsf content national tobacco campaign lp 150x150 Quitnow Site Launch" title="fireshot-capture-3-quitnow-national-tobacco-campaign-www_quitnow_info_au_internet_quitnow_publishing_nsf_content_national-tobacco-campaign-lp" /></a>
<a href='http://www.scottking.com.au/blog/2008/07/quitnow-site-launch/fireshot-capture-2-quitnow-welcome-to-the-quitnow-website-www_quitnow_info_au_internet_quitnow_publishing_nsf_content_home/' title='fireshot-capture-2-quitnow-welcome-to-the-quitnow-website-www_quitnow_info_au_internet_quitnow_publishing_nsf_content_home'><img width="150" height="150" src="http://www.scottking.com.au/blog/wp-content/uploads/2008/07/fireshot-capture-2-quitnow-welcome-to-the-quitnow-website-www_quitnow_info_au_internet_quitnow_publishing_nsf_content_home-150x150.png" class="attachment-thumbnail" alt="fireshot capture 2 quitnow welcome to the quitnow website www quitnow info au internet quitnow publishing nsf content home 150x150 Quitnow Site Launch" title="fireshot-capture-2-quitnow-welcome-to-the-quitnow-website-www_quitnow_info_au_internet_quitnow_publishing_nsf_content_home" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.scottking.com.au/blog/2008/07/quitnow-site-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
