<?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>BarelyBlogging &#187; Web</title>
	<atom:link href="http://www.barelyfitz.com/blog/archives/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.barelyfitz.com/blog</link>
	<description>Patrick Fitzgerald of BarelyFitz Designs</description>
	<lastBuildDate>Thu, 13 Oct 2011 01:55:46 +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>workaround for entity bug (?) in tabber</title>
		<link>http://www.barelyfitz.com/blog/archives/2007/02/06/527/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2007/02/06/527/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 13:25:49 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[DHTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tabber]]></category>
		<category><![CDATA[tabbifier]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2007/02/06/527/</guid>
		<description><![CDATA[A user of my tabber script discovered that when his tab headings had an ampersand character like this:
&#60;h2&#62;Me &#38;amp; My Shadow&#60;/h2&#62;
Then the tab control displayed &#8220;&#38;amp;&#8221; instead of a single ampersand character.
It looks like this occurs because the JavaScript DOM function document.createTextNode() does not convert entities. However, it looks like innerHTML does convert entities, so [...]]]></description>
			<content:encoded><![CDATA[<p>A user of my <a href="http://www.barelyfitz.com/projects/tabber/">tabber</a> script discovered that when his tab headings had an ampersand character like this:</p>
<p><code>&lt;h2&gt;Me &amp;amp; My Shadow&lt;/h2&gt;</code></p>
<p>Then the tab control displayed &#8220;&amp;amp;&#8221; instead of a single ampersand character.</p>
<p>It looks like this occurs because the JavaScript DOM function document.createTextNode() does not convert entities. However, it looks like innerHTML does convert entities, so to fix your problem find the following line in <a href="http://www.barelyfitz.com/projects/tabber/tabber.js">tabber.js</a>:</p>
<p><code>DOM_a.appendChild(document.createTextNode(t.headingText));</code></p>
<p>and replace with the following:</p>
<p><code>DOM_a.innerHTML = t.headingText;</code></p>
<p>I&#8217;ll think about this some more and if I can&#8217;t find any bad side effects I&#8217;ll add to the tabber code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2007/02/06/527/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Web Developer extension outline any CSS selector</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/04/07/310/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/04/07/310/#comments</comments>
		<pubDate>Fri, 07 Apr 2006 06:30:27 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/04/07/310/</guid>
		<description><![CDATA[
&#8220;You don&#8217;t need to be helped any longer. You&#8217;ve always had the power to go back to Kansas.&#8221; &#8212; Glinda, the Good Witch of the North
When I saw Pawel Knapik&#8217;s 
bookmarklet to test CSS selectors, I thought it was a great idea &#8211; now I can enter any CSS selector and it will be outlined [...]]]></description>
			<content:encoded><![CDATA[<div class="shadow"><img alt="webdev-toolbar.png" id="image311" src="http://www.barelyfitz.com/blog/upload/webdev-toolbar.png" /></div>
<blockquote><p>&#8220;You don&#8217;t need to be helped any longer. You&#8217;ve always had the power to go back to Kansas.&#8221; &#8212; Glinda, the Good Witch of the North</p></blockquote>
<p>When I saw Pawel Knapik&#8217;s <a href="http://pawel.saikko.com/bookmarklet-to-test-css-selectors,20060406"><br />
bookmarklet to test CSS selectors</a>, I thought it was a great idea &#8211; now I can enter any CSS selector and it will be outlined on the page.</p>
<p>Why isn&#8217;t this feature in Chris Pederick&#8217;s <a href="http://chrispederick.com/work/webdeveloper/">web developer extension</a>? I jotted off an email to Chris &#8211; and got a reply in just a few minutes, informing me that it was already there!</p>
<p>I knew that I could outline a custom HTML element (as it says: &#8220;eg. div&#8221;), but it turns out you can enter any CSS selector. Oh joy!</p>
<p>So thanks again to Chris, the Good Web Developer of the West!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/04/07/310/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screencast: Judge a Web App By Its Title</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/04/06/305/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/04/06/305/#comments</comments>
		<pubDate>Thu, 06 Apr 2006 13:02:15 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[YKMH]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[information architecture]]></category>
		<category><![CDATA[power user]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/04/06/305/</guid>
		<description><![CDATA[
The second episode of &#8220;You&#8217;re Killing Me Here!&#8221; (usability and design screencast series) discusses various uses of the page title (HTML TITLE element): in particular how you can use it to communicate with users of your web application.

View the Screencast (2.5 minutes)
]]></description>
			<content:encoded><![CDATA[<div class="shadow"><a href="http://www.barelyfitz.com/screencast/ykmh/"><img id="image276" alt="You're Killing Me Here!" src="http://www.barelyfitz.com/blog/upload/ykmh-logo-small.jpg" /></a></div>
<p>The second episode of &#8220;You&#8217;re Killing Me Here!&#8221; (usability and design screencast series) discusses various uses of the page title (HTML TITLE element): in particular how you can use it to communicate with users of your web application.<br />
<a href="http://www.barelyfitz.com/screencast/ykmh/ykmh-02-title/" /></p>
<p><a href="http://www.barelyfitz.com/screencast/ykmh/ykmh-02-title/">View the Screencast</a> (2.5 minutes)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/04/06/305/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You&#8217;re Killing Me Here! Web Usability Screencast</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/03/24/277/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/03/24/277/#comments</comments>
		<pubDate>Fri, 24 Mar 2006 11:18:56 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[YKMH]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[information architecture]]></category>
		<category><![CDATA[power user]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/03/24/277/</guid>
		<description><![CDATA[
Introducing &#8220;You&#8217;re Killing Me Here!&#8221; a series of screencasts discussing web site and web application design, accessibility, and usability from the perspective of a power-user.
The first episode discusses &#8220;type ahead find&#8221; in the Firefox browser and the design implications that come along with it.
View the Screencast
]]></description>
			<content:encoded><![CDATA[<div class="shadow"><a href="http://www.barelyfitz.com/screencast/ykmh/"><img alt="You're Killing Me Here!" id="image276" src="http://www.barelyfitz.com/blog/upload/ykmh-logo-small.jpg" /></a></div>
<p>Introducing &#8220;You&#8217;re Killing Me Here!&#8221; a series of screencasts discussing web site and web application design, accessibility, and usability from the perspective of a power-user.</p>
<p>The first episode discusses &#8220;type ahead find&#8221; in the Firefox browser and the design implications that come along with it.</p>
<p><a href="http://www.barelyfitz.com/screencast/ykmh/ykmh-01-focus/">View the Screencast</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/03/24/277/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>JavaScript-safe string variable</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/03/13/241/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/03/13/241/#comments</comments>
		<pubDate>Mon, 13 Mar 2006 16:10:06 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/03/13/241/</guid>
		<description><![CDATA[If you have a bunch of funky data to store in a JavaScript string, for example some HTML, you have to be careful to &#8220;escape&#8221; all the special characters so it doesn&#8217;t break your script.
Or you can just use my web data encoder and choose &#8220;JavaScript-safe&#8221; variable:

You can also use other encodings, such as encodeURIComponent [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a bunch of funky data to store in a JavaScript string, for example some HTML, you have to be careful to &#8220;escape&#8221; all the special characters so it doesn&#8217;t break your script.</p>
<p>Or you can just use my web data encoder and choose &#8220;JavaScript-safe&#8221; variable:</p>
<p><a href="http://www.barelyfitz.com/projects/encoder/"><img alt="web data encoder" src="http://www.barelyfitz.com/blog/upload/encoder.gif" /></a></p>
<p>You can also use other encodings, such as <em>encodeURIComponent</em> to make a complex URL safe to pass as a component of another URL.</p>
<p><a href="http://www.barelyfitz.com/projects/encoder/">Web Data Encoder for JavaScript-safe variables</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/03/13/241/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>He cupped her university of phoenix online universities</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/03/12/239/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/03/12/239/#comments</comments>
		<pubDate>Sun, 12 Mar 2006 17:43:59 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Message Boards]]></category>
		<category><![CDATA[PHPBB]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[comment spam]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/03/12/239/</guid>
		<description><![CDATA[Within a few hours of re-activating the discussion boards here on BarelyFitz, I started getting spammers.
Spammers have determined that if they register for a message board account, they can leave a link to their webpage, and the link shows up on the message board user list. I&#8217;ll have to hack PHPBB to remove this back [...]]]></description>
			<content:encoded><![CDATA[<p>Within a few hours of re-activating the <a href="http://www.barelyfitz.com/phpBB2/">discussion boards</a> here on BarelyFitz, I started getting spammers.</p>
<p>Spammers have determined that if they register for a message board account, they can leave a link to their webpage, and the link shows up on the message board user list. I&#8217;ll have to hack PHPBB to remove this back door for spammers.</p>
<p>I noticed the following interesting attempt: instead of leaving an obvious link to a spammer site, the link was something like the following:</p>
<pre>studentloan.example.com/religious/</pre>
<p>This URL looks relatively innocent &#8211; after all it has the word &#8220;religious&#8221; in it! But if you follow the link, you get a page that uses JavaScript to immediately redirect you to the spammer&#8217;s site.</p>
<p>After a bit more digging into the redirect page I found a JavaScript program that does the redirecting (heavily obfuscated to prevent Google from discovering the true purpose of the script), plus a bunch of computer-generated text to geared to increase their search results, a sample of which follows:</p>
<blockquote><p>I let some weight off her so I &#8220;How did it feel to have you dept of education student loans in your tea In about thirty best online university service canceable education loan had begun to caress her pussy kentucky higher education student loans The smoke from nearby. Stretched out sideways to a July So you can still cheer, quart in size dose You take it soaked panties slapping her dental continuing education on-line. &#8220;Shall we undress you or can over and told me she wanted to us dept education student loan tipped up invitingly at the nipples, forward to what was to come She. Online university courses canada, lot of tires in my days as a a little gulp He cupped her university of phoenix online universities, overcomes any resistance you.</p></blockquote>
<p>Update 2006-03-14: This morning there were three message board spam posts, which I quickly eliminated when I saw them in my RSS feed. They wouldn&#8217;t have helped the spammer since the links were all marked as rel=&#8221;nofollow&#8221; after some changes I made to PHPBB. But I just don&#8217;t want to deal with it, so I changed the discussion boards to require registration before posting. Sigh&#8230; why do spammers have to ruin it for all of us.</p>
<p>It would be nice if PHPBB had the same &#8220;moderate once&#8221; system that WordPress uses.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/03/12/239/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>BarelyFitz discussion boards are back</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/03/11/237/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/03/11/237/#comments</comments>
		<pubDate>Sun, 12 Mar 2006 04:52:34 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/03/11/237/</guid>
		<description><![CDATA[A year ago, the BarelyFitz discussion boards were hacked due to a nasty bug in PHPBB, so I had to remove them.
In the meantime I had a new edition to my family and a transition from running my own web design company to working as a full-time employee at WebMD. Needless to say, I have [...]]]></description>
			<content:encoded><![CDATA[<p>A year ago, <a href="http://www.barelyfitz.com/phpBB2/">the BarelyFitz discussion boards</a> were hacked due to a nasty bug in PHPBB, so I had to remove them.</p>
<p>In the meantime I had a <a href="http://kids.barelyfitz.com">new edition</a> to my family and a transition from running my own web design company to working as a full-time employee at WebMD. Needless to say, I have been busy and the forums were not a high priority.</p>
<p>But finally the forums are back (and hopefully this will stem the many email questions I receive about my <a href="http://www.barelyfitz.com/projects/">open-source projects</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/03/11/237/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Slideshow Wizard Demo Screencast Video</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/03/07/231/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/03/07/231/#comments</comments>
		<pubDate>Tue, 07 Mar 2006 07:13:08 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[camtasia studio]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/03/07/231/</guid>
		<description><![CDATA[I&#8217;m evaluating Camtasia Studio for creating some training videos, so I made a training video for my JavaScript slideshow wizard:
Play the Video
I don&#8217;t have much of a voice for these types of things &#8211; I need to find some kind of microphone modulator to give me that Barry White effect.
It&#8217;s pretty easy to use software, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m evaluating <a href="http://www.techsmith.com/"><em>Camtasia Studio</em></a> for creating some training videos, so I made a training video for my <a href="http://slideshow.barelyfitz.com/">JavaScript slideshow</a> wizard:</p>
<p><a href="http://www.barelyfitz.com/projects/slideshow/wizard/demo/slideshow-wizard.html">Play the Video</a></p>
<p>I don&#8217;t have much of a voice for these types of things &#8211; I need to find some kind of microphone modulator to give me that <a href="http://www.barelyfitz.com/q/amazon-search/barry+white">Barry White</a> effect.</p>
<p>It&#8217;s pretty easy to use software, I was able to whip up a Flash screencast demo in no time at all with callouts and everything. Just be thankful that I only have version 2, because in version 3 they added webcam support. How about it Camtasia people, slide me a copy of version 3 so the world can see <a href="http://www.flickr.com/photos/barelyfitz/tags/me/">my beautiful mug</a>.</p>
<p>Regarding the slideshow wizard &#8211; it still works pretty well, but could use an update to make it more usable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/03/07/231/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebMD Health Video Library</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/02/22/223/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/02/22/223/#comments</comments>
		<pubDate>Wed, 22 Feb 2006 23:01:36 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/02/22/223/</guid>
		<description><![CDATA[WebMD   Daily Health Videos Archive
Phew&#8230; it was an intense couple of days pounding this out but it went live today. I&#8217;ll write an article about the JavaScript techniques employed to take a static HTML page and make it interactive (while keeping the page search-engine friendly), but for now I just want to link [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webmd.com/content/article/117/112449.htm">WebMD   Daily Health Videos Archive</a></p>
<p>Phew&#8230; it was an intense couple of days pounding this out but it went live today. I&#8217;ll write an article about the JavaScript techniques employed to take a static HTML page and make it interactive (while keeping the page search-engine friendly), but for now I just want to link to it and give it some Google-juice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/02/22/223/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatic external link interstitials using JavaScript and Behavior.js</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/01/19/214/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/01/19/214/#comments</comments>
		<pubDate>Thu, 19 Jan 2006 17:25:05 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/01/19/214/</guid>
		<description><![CDATA[Working for a health information website has some disadvantages &#8211; you must take greater than normal care to ensure user privacy. One of the requirements is to pop up an interstitial message before going to another website, because the new website might have different terms and conditions.
With the new blogs at WebMD, we&#8217;re tying into [...]]]></description>
			<content:encoded><![CDATA[<p>Working for a health information website has some disadvantages &#8211; you must take greater than normal care to ensure user privacy. One of the requirements is to pop up an <a href="http://en.wikipedia.org/wiki/Interstitial">interstitial</a> message before going to another website, because the new website might have different terms and conditions.</p>
<p>With the new <a href="http://www.barelyfitz.com/blog/archives/2005/12/05/207/">blogs at WebMD</a>, we&#8217;re tying into social networking sites like Technorati and del.icio.us, plus linking to other blogs, so we have a <em>lot</em> of external links.</p>
<p>Previously this meant manually modifying each link so it passes through a special page on WebMD then redirects to the target URL. But I thought that was a lot of work, plus very error prone and hard to maintain.</p>
<p>Instead I used Ben Nolan&#8217;s <a href="http://bennolan.com/behaviour/">behavior.js</a>, a wonderful library for attaching behaviors to page elements, to add an <em>onclick</em> behavior to every external link. I used regular expressions to determine which links should be considered &#8220;internal&#8221; links that shouldn&#8217;t be modified.</p>
<p>You can go to a the <a href="http://blogs.webmd.com/heart-disease/">WebMD heart disease blog</a> and click a Technorati link to check it out.</p>
<p>Here&#8217;s the code: <a href="http://www.barelyfitz.com/blog/upload/behavior-external-linkify.js.txt">behavior-external-linkify.js</a></p>
<p><strong>Update:</strong></p>
<p>Julien writes:</p>
<blockquote><p>I tried the scenario you listed in your blog (go to WebMD and then<br />
click a Technorati link) in Firefox 1.5 and it didn&#8217;t work: the popup<br />
got blocked&#8230;</p></blockquote>
<p>Yes, I noticed that as well; unfortunately the actual part of the<br />
process that displays the interstitial is not under my control &#8211; all I<br />
can do is redirect the user to the WebMD page that does the rest.</p>
<p>I need to notify them about this difficulty &#8211; they could probably<br />
change that page to display an alert box if the popup did not open.<br />
Alternatively, if you didn&#8217;t care about redirecting through another<br />
page you could modify my JavaScript such that it displays an alert<br />
instead of redirecting the page.</p>
<p><strong>Update 2006-03-09:</strong> <a href="http://philsown.org/2006/03/outbound_link_warnings_yul/">Here</a> is another implementation using Yahoo!&#8217;s libraries instead of Behavior.js</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/01/19/214/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

