<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>SECOND SIGHTING</title>
	
	<link>http://www.secondsighting.co.uk</link>
	<description>Web Design, SEO &amp; PPC</description>
	<lastBuildDate>Fri, 03 Feb 2012 14:14:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SecondSighting" /><feedburner:info uri="secondsighting" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>301 Redirect PHP</title>
		<link>http://feedproxy.google.com/~r/SecondSighting/~3/H25BRHhl-go/</link>
		<comments>http://www.secondsighting.co.uk/2012/01/23/301-redirect-php/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 11:43:10 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[301]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://www.secondsighting.co.uk/?p=132</guid>
		<description><![CDATA[How to do a 301 redirect in PHP. Remember to add right at the top of your code, before anything is sent to the browser. &#60;?php header( "HTTP/1.1 301 Moved Permanently" ); header( "Location: http://www.secondsighting.co.uk" ); ?&#62; This tells the visitor&#8217;s browser, and any search engine that visits the page, that it has moved permanently [...]]]></description>
			<content:encoded><![CDATA[<p>How to do a 301 redirect in PHP. Remember to add right at the top of your code, before anything is sent to the browser.</p>
<p><code>&lt;?php<br />
header( "HTTP/1.1 301 Moved Permanently" );<br />
header( "Location: http://www.secondsighting.co.uk" );<br />
?&gt; </code></p>
<p>This tells the visitor&rsquo;s browser, and any search engine that visits the page, that it has moved <strong>permanently</strong> to the specified URL.</p>
<img src="http://feeds.feedburner.com/~r/SecondSighting/~4/H25BRHhl-go" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.secondsighting.co.uk/2012/01/23/301-redirect-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.secondsighting.co.uk/2012/01/23/301-redirect-php/</feedburner:origLink></item>
		<item>
		<title>Calling Multiple JavaScript Functions onSubmit</title>
		<link>http://feedproxy.google.com/~r/SecondSighting/~3/-nuoJ7rFtu0/</link>
		<comments>http://www.secondsighting.co.uk/2011/12/08/calling-multiple-javascript-functions-onsubmit/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 18:12:08 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.secondsighting.co.uk/?p=128</guid>
		<description><![CDATA[Use the following syntax: onSubmit="return (FunctionOne() &#038;&#038; FunctionTwo() &#038;&#038; FunctionThree());" This will ensure all functions are run when the button is clicked. If you use the format onSubmit="return FunctionOne(); return FunctionTwo(); return FunctionThree();" then only the first function is run.]]></description>
			<content:encoded><![CDATA[<p>Use the following syntax:</p>
<p><code>onSubmit="return (FunctionOne() &#038;&#038; FunctionTwo() &#038;&#038; FunctionThree());"</code></p>
<p>This will ensure all functions are run when the button is clicked. If you use the format</p>
<p><code>onSubmit="return FunctionOne(); return FunctionTwo(); return FunctionThree();"</code></p>
<p>then only the first function is run.</p>
<img src="http://feeds.feedburner.com/~r/SecondSighting/~4/-nuoJ7rFtu0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.secondsighting.co.uk/2011/12/08/calling-multiple-javascript-functions-onsubmit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.secondsighting.co.uk/2011/12/08/calling-multiple-javascript-functions-onsubmit/</feedburner:origLink></item>
		<item>
		<title>Replacing Menu Text with Images in WordPress</title>
		<link>http://feedproxy.google.com/~r/SecondSighting/~3/9P0ly5kj6ZI/</link>
		<comments>http://www.secondsighting.co.uk/2011/06/30/replacing-menu-text-with-images-in-wordpress/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 18:53:57 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.secondsighting.co.uk/?p=113</guid>
		<description><![CDATA[Great solution on the WordPress forum for swapping text for images in a WordPress menu. To remove the link text from the screen you could add: text-indent:-9999px; Does anyone know of a more elegant solution to this bit?]]></description>
			<content:encoded><![CDATA[<p>Great solution on the WordPress forum for <a title="Swap text for images in a WordPress menu" href="http://wordpress.org/support/topic/twentyten-using-image-replacement-for-menu-div">swapping text for images in a WordPress menu</a>. To remove the link text from the screen you could add: <code>text-indent:-9999px;</code> Does anyone know of a more elegant solution to this bit?</p>
<img src="http://feeds.feedburner.com/~r/SecondSighting/~4/9P0ly5kj6ZI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.secondsighting.co.uk/2011/06/30/replacing-menu-text-with-images-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.secondsighting.co.uk/2011/06/30/replacing-menu-text-with-images-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>Domains &amp; Websites for Sale</title>
		<link>http://feedproxy.google.com/~r/SecondSighting/~3/uyUDMYS1z5A/</link>
		<comments>http://www.secondsighting.co.uk/2010/03/04/domains-websites-for-sale/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 11:49:48 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Domains]]></category>

		<guid isPermaLink="false">http://www.secondsighting.co.uk/?p=40</guid>
		<description><![CDATA[I am getting out of affiliate marketing hopefully within a year (I didn&#8217;t in the end). I have several domains / websites for sale which are listed below, mostly product names but there are a few financial ones too. Most I will sell for £xx but some I will want £xxx, buyer will pay the [...]]]></description>
			<content:encoded><![CDATA[<p><del datetime="2011-06-16T13:36:17+00:00">I am getting out of affiliate marketing hopefully within a year</del> (I didn&#8217;t in the end). I have several domains / websites for sale which are listed below, mostly product names but there are a few financial ones too. Most I will sell for £xx but some I will want £xxx, buyer will pay the nominet fee. Some rank well and make a little money from affiliate sales / leads and adsense. I will provide stats if required &#8211; let me know for which sites.</p>
<p>Please <a href="../contact/">contact me</a> with any offers.</p>
<h2>Finance</h2>
<p><del datetime="2011-10-27T05:16:42+00:00">leveltermlifeinsurance.org.uk</del><br />
<del datetime="2011-10-27T05:16:42+00:00">shorttermlifeinsurance.org.uk</del><br />
<span style="text-decoration: line-through;">5000loan.org.uk</span><br />
<span style="text-decoration: line-through;">ccjloans.org.uk</span><br />
<span style="text-decoration: line-through;">money-problems.org.uk</span><br />
<span style="text-decoration: line-through;">deptmanagement.org.uk</span><br />
<span style="text-decoration: line-through;">selfcertifiedloans.org.uk</span><br />
<span style="text-decoration: line-through;">stooz.org.uk</span></p>
<h2>Product</h2>
<p>touchscreentablet.co.uk<br />
<del datetime="2011-01-17T15:27:34+00:00">alineskirts.co.uk<br />
basketballhoop.org.uk<br />
bathroombins.co.uk<br />
bedroomclocks.co.uk<br />
bedroommirrors.org.uk<br />
bedthrow.org.uk<br />
builtinfridges.org.uk<br />
butterdish.org.uk<br />
cricketstumps.org.uk<br />
cylindervacuumcleaner.org.uk<br />
duvetstoragebags.co.uk<br />
elecricwoks.co.uk<br />
electricrangecooker.org.uk<br />
electricsuites.org.uk<br />
hangingchairs.org.uk<br />
illuminatedmirror.org.uk<br />
linenbins.co.uk<br />
mixingbowls.org.uk<br />
nurserychair.org.uk<br />
nurserylights.org.uk<br />
personalisedchildrensgifts.org.uk<br />
refrigeratorwaterfilters.org.uk<br />
roadscooters.co.uk<br />
robothoovers.org.uk<br />
shoeboxesstorage.co.uk<br />
smallcamcorder.co.uk<br />
suithangers.co.uk<br />
tiebacks.org.uk<br />
traditionalrugs.org.uk<br />
upholsteryfabrics.org.uk<br />
vacuumcleanerbags.org.uk<br />
weddingcufflinks.org.uk</del><br />
<span style="text-decoration: line-through;"> 4slicetoasters.org.uk</span><br />
<del datetime="2010-12-04T11:32:25+00:00">abtrainers.co.uk</del><br />
<span style="text-decoration: line-through;"> adultbikes.co.uk</span><br />
<del datetime="2010-12-04T11:32:25+00:00">airwalkers.org.uk</del><br />
<span style="text-decoration: line-through;">beantocupcoffeemachines.org.uk</span><br />
<del datetime="2010-12-04T11:32:25+00:00">bedcushions.co.uk</del><br />
<del datetime="2010-12-04T11:32:25+00:00">bedroomcabinets.org.uk</del><br />
<span style="text-decoration: line-through;"> bedroomchairs.org.uk</span><br />
<del datetime="2010-12-04T11:32:25+00:00">bedroomcurtains.org.uk</del><br />
<span style="text-decoration: line-through;"> bedroomdrawers.co.uk</span><br />
<span style="text-decoration: line-through;"> bedroomrugs.co.uk</span><br />
<span style="text-decoration: line-through;"> canopeners.org.uk</span><br />
<span style="text-decoration: line-through;"> carpetshampooersuk.com</span><br />
<span style="text-decoration: line-through;"> cheapamericanfridgefreezers.co.uk</span><br />
<span style="text-decoration: line-through;"> cheapdualfuelcookers.co.uk</span><br />
<span style="text-decoration: line-through;"> cheapuprightfreezers.co.uk</span><br />
<del datetime="2010-12-04T11:32:25+00:00">carpetsteamcleaners.org.uk</del><br />
<del datetime="2010-12-04T11:32:25+00:00">compacttumbledryers.org.uk</del><br />
<del datetime="2010-12-04T11:32:25+00:00">convectorheaters.org.uk</del><br />
<span style="text-decoration: line-through;"> daydresses.co.uk</span><br />
<span style="text-decoration: line-through;"> dresscovers.co.uk</span><br />
<span style="text-decoration: line-through;"> drinkscabinets.com</span><br />
<del datetime="2010-12-04T11:32:25+00:00">foodblender.org.uk</del><br />
<del datetime="2010-12-04T11:32:25+00:00">foodslicers.org.uk</del><br />
<del datetime="2010-03-05T11:10:58+00:00">foodsteamer.org.uk</del><br />
<del datetime="2010-12-04T11:32:25+00:00">foodwarmer.org.uk</del><br />
<span style="text-decoration: line-through;"> frostfreefridgefreezers.co.uk</span><br />
<del datetime="2010-12-04T11:32:25+00:00">fruitbowls.org.uk</del><br />
<del datetime="2010-12-04T11:32:25+00:00">gamesandpuzzles.org.uk</del><br />
<span style="text-decoration: line-through;">glassshelves.org.uk</span><br />
<del datetime="2010-12-04T11:32:25+00:00">hairstylers.org.uk</del><br />
<del datetime="2010-12-04T11:32:25+00:00">kidscyclehelmets.co.uk</del><br />
<span style="text-decoration: line-through;"> kitchenrollholder.co.uk</span><br />
<span style="text-decoration: line-through;"> lightweightstrollers.org.uk</span><br />
<span style="text-decoration: line-through;"> occasionaltables.org.uk</span><br />
<del datetime="2010-12-04T11:32:25+00:00">petrolscooters.org.uk</del><br />
<span style="text-decoration: line-through;">portableairconditionersuk.com</span><br />
<span style="text-decoration: line-through;"> pramaccessories.co.uk</span><br />
<span style="text-decoration: line-through;"> pramshoes.co.uk</span><br />
<span style="text-decoration: line-through;"> rechargableaabatteries.co.uk</span><br />
<span style="text-decoration: line-through;"> rechargeableaabatteries.co.uk</span><br />
<del datetime="2010-03-05T11:10:58+00:00">shavingmirrors.org.uk</del><br />
<del datetime="2010-12-04T11:32:25+00:00">steampresses.org.uk</del><br />
<span style="text-decoration: line-through;">stepladders.org.uk</span><br />
<span style="text-decoration: line-through;"> strappydress.co.uk</span><br />
<span style="text-decoration: line-through;"> suitcovers.org.uk</span><br />
<span style="text-decoration: line-through;"> televisionaccessories.co.uk</span><br />
<span style="text-decoration: line-through;"> toiletrollholder.org.uk</span><br />
<span style="text-decoration: line-through;"> trouserhangers.co.uk</span><br />
<span style="text-decoration: line-through;"> wheelbarrow.org.uk</span><br />
<del datetime="2010-12-04T11:32:25+00:00">winecabinet.org.uk</del><br />
<del datetime="2010-12-04T11:32:25+00:00">womensjewellery.org.uk</del><br />
<span style="text-decoration: line-through;"> womenssportswear.org.uk</span></p>
<img src="http://feeds.feedburner.com/~r/SecondSighting/~4/uyUDMYS1z5A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.secondsighting.co.uk/2010/03/04/domains-websites-for-sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.secondsighting.co.uk/2010/03/04/domains-websites-for-sale/</feedburner:origLink></item>
		<item>
		<title>Useful Software</title>
		<link>http://feedproxy.google.com/~r/SecondSighting/~3/SZoqqUDHZpM/</link>
		<comments>http://www.secondsighting.co.uk/2009/03/27/useful-software/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 10:42:45 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.secondsighting.co.uk/?p=39</guid>
		<description><![CDATA[http://www.prnwatch.com/prio.html &#8211; give each system process a priority &#38; have it saved permanently, e.g. if Skype is lagging, you can set the process to high priority and it will keep that saved for the next time Skype is used. Normally the process priority reverts to ‘normal’ when you close any program.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.prnwatch.com/prio.html">http://www.prnwatch.com/prio.html</a> &#8211; give each system process a priority &amp; have it saved permanently, e.g. if Skype is lagging, you can set the process to high priority and it will keep that saved for the next time Skype is used. Normally the process priority reverts to ‘normal’ when you close any program.</p>
<img src="http://feeds.feedburner.com/~r/SecondSighting/~4/SZoqqUDHZpM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.secondsighting.co.uk/2009/03/27/useful-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.secondsighting.co.uk/2009/03/27/useful-software/</feedburner:origLink></item>
		<item>
		<title>Yahoo! Search Marketing Blocked Domains</title>
		<link>http://feedproxy.google.com/~r/SecondSighting/~3/NTVVy3VRSJk/</link>
		<comments>http://www.secondsighting.co.uk/2009/03/12/yahoo-search-marketing-blocked-domains/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 14:05:40 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Yahoo! Search Marketing]]></category>

		<guid isPermaLink="false">http://www.secondsighting.co.uk/?p=38</guid>
		<description><![CDATA[Did you know that the blocked domains feature doesn’t always work? There are several websites which PPC ads will still show on even if you block them. An example site is parkingspa.com. I have mentioned this to their customer support but can’t get a reasonable answer from them as to why it happens. And they [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know that the blocked domains feature doesn’t always work? There are several websites which PPC ads will still show on even if you block them. An example site is parkingspa.com. I have mentioned this to their customer support but can’t get a reasonable answer from them as to why it happens. And they wonder why they can’t catch Google&#8230;</p>
<img src="http://feeds.feedburner.com/~r/SecondSighting/~4/NTVVy3VRSJk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.secondsighting.co.uk/2009/03/12/yahoo-search-marketing-blocked-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.secondsighting.co.uk/2009/03/12/yahoo-search-marketing-blocked-domains/</feedburner:origLink></item>
		<item>
		<title>Orange Customer Support</title>
		<link>http://feedproxy.google.com/~r/SecondSighting/~3/alpNp9NfXDE/</link>
		<comments>http://www.secondsighting.co.uk/2009/02/24/orange-customer-support/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 21:56:17 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.secondsighting.co.uk/?p=37</guid>
		<description><![CDATA[Got a problem with your Orange mobile? When you get through to support (07973 100 150 for pay monthly, 07973 100 450 for pay as you go) ask for Grant on extension 44796. Legend. So many times i&#8217;ve rung up with a problem and got some noob who puts me on hold 5 times then [...]]]></description>
			<content:encoded><![CDATA[<p>Got a problem with your Orange mobile? When you get through to support (07973 100 150 for pay monthly,  07973 100 450 for pay as you go) ask for Grant on extension 44796. Legend. So many times i&#8217;ve rung up with a problem and got some noob who puts me on hold 5 times then promises a callback from someone else which doesn&#8217;t materialise. This guys knows it all.</p>
<img src="http://feeds.feedburner.com/~r/SecondSighting/~4/alpNp9NfXDE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.secondsighting.co.uk/2009/02/24/orange-customer-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.secondsighting.co.uk/2009/02/24/orange-customer-support/</feedburner:origLink></item>
		<item>
		<title>An Easy Way to Improve Keyword Quality Score</title>
		<link>http://feedproxy.google.com/~r/SecondSighting/~3/SfyITOXzM5M/</link>
		<comments>http://www.secondsighting.co.uk/2008/11/28/an-easy-way-to-improve-keyword-quality-score/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 16:40:25 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Google AdWords]]></category>
		<category><![CDATA[PPC]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[pay per click]]></category>

		<guid isPermaLink="false">http://www.secondsighting.co.uk/?p=36</guid>
		<description><![CDATA[A low keyword quality score is obviously a bad thing. It can lead to an increase in the keyword&#8217;s minimum bid, meaning it is no longer profitable. The method outlined below should give you a slightly higher quality score. It could be enough to make the keyword profitable again. It is best used in the [...]]]></description>
			<content:encoded><![CDATA[<p>A low keyword quality score is obviously a bad thing. It can lead to an increase in the keyword&#8217;s minimum bid, meaning it is no longer profitable. The method outlined below should give you a slightly higher quality score. It could be enough to make the keyword profitable again. It is best used in the following circumstances:</p>
<ul>
<li>Where your ad already seems highly relevant to the keyword, but for whatever reason AdWords still gives it a poor score.</li>
<li>You are targetting a word or phrase that is not allowed to appear in your ad e.g. it is trademarked.</li>
</ul>
<p>Imagine your keyword is <em>monkey widgets</em> but the word <em>monkey</em> is trademarked. To increase your score you need to mention <em>widgets</em> as often as possible in your ad. A good ad would be:</p>
<p><strong>Cheap Widgets</strong><br />
Widgets, widgets &amp; more widgets.<br />
Get your widget today.</p>
<p>Its important to stuff that keyword in a few times. And a good idea too to mention both plural &amp; singular variations of the word. In testing I have increased quality score from 2 out of 10 to 4 &amp; 5 out of 10 for several keywords. 5 out of 10 means your keyword is listed as <em>OK</em> instead of <em>Poor</em> and the minimum bid can be reduced.</p>
<img src="http://feeds.feedburner.com/~r/SecondSighting/~4/SfyITOXzM5M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.secondsighting.co.uk/2008/11/28/an-easy-way-to-improve-keyword-quality-score/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.secondsighting.co.uk/2008/11/28/an-easy-way-to-improve-keyword-quality-score/</feedburner:origLink></item>
		<item>
		<title>Extensionless URIs</title>
		<link>http://feedproxy.google.com/~r/SecondSighting/~3/jlA4Hc9ooGg/</link>
		<comments>http://www.secondsighting.co.uk/2008/11/26/extensionless-uris/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 15:11:45 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://www.secondsighting.co.uk/?p=35</guid>
		<description><![CDATA[if you want your URI format to be website.com/about/ instead of website.com/about.php then put the following line in a .htaccess file in your websites root folder. RewriteRule ^(.*)/$ $1.php [nc] The php part refers to the extension your web pages have. If you had a file called about.html then the line would be RewriteRule ^(.*)/$ [...]]]></description>
			<content:encoded><![CDATA[<p>if you want your URI format to be website.com/about/ instead of website.com/about.php then put the following line in a .htaccess file in your websites root folder.</p>
<p><code>RewriteRule ^(.*)/$ $1.php [nc]</code></p>
<p>The <em>php</em> part refers to the extension your web pages have. If you had a file called about.html then the line would be</p>
<p><code>RewriteRule ^(.*)/$ $1.html [nc]</code></p>
<p>The [nc] at the end means the pattern is case-insensitive so would match both about.html and about.HTML</p>
<img src="http://feeds.feedburner.com/~r/SecondSighting/~4/jlA4Hc9ooGg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.secondsighting.co.uk/2008/11/26/extensionless-uris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.secondsighting.co.uk/2008/11/26/extensionless-uris/</feedburner:origLink></item>
		<item>
		<title>Testing Websites in IE 6 On Vista</title>
		<link>http://feedproxy.google.com/~r/SecondSighting/~3/oCXU6XcoCpQ/</link>
		<comments>http://www.secondsighting.co.uk/2008/06/10/testing-websites-in-ie-6-on-vista/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 12:02:40 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[ietester]]></category>
		<category><![CDATA[internet explorer]]></category>

		<guid isPermaLink="false">http://www.secondsighting.co.uk/2008/06/10/testing-ie-6-on-vista/</guid>
		<description><![CDATA[IETester is some great software for testing websites on Vista. You can currently see how sites look in Internet Explorer versions 5.5, 6, 7 &#38; 8 beta 1. VERY useful when you consider you can&#8217;t just download the IE6 browser itself and install it on Vista.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.my-debugbar.com/wiki/IETester/HomePage">IETester</a> is some great software for testing websites on Vista. You can currently see how sites look in Internet Explorer versions 5.5, 6, 7 &amp; 8 beta 1. VERY useful when you consider you can&#8217;t just download the IE6 browser itself and install it on Vista.</p>
<img src="http://feeds.feedburner.com/~r/SecondSighting/~4/oCXU6XcoCpQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.secondsighting.co.uk/2008/06/10/testing-websites-in-ie-6-on-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.secondsighting.co.uk/2008/06/10/testing-websites-in-ie-6-on-vista/</feedburner:origLink></item>
	</channel>
</rss>

