<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Revolution Web Design Blog - Javascript</title>
			<link>http://www.revolutionwebdesign.com/blog/index.cfm</link>
			<description>The Blog of Tony Weeg - Web Application Architect, Designer and Developer</description>
			<language>en-us</language>
			<pubDate>Thu, 09 Sep 2010 09:08:32 -0600</pubDate>
			<lastBuildDate>Thu, 26 Feb 2009 06:09:00 -0600</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>tw@revolutionwebdesign.com</managingEditor>
			<webMaster>tw@revolutionwebdesign.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>tw@revolutionwebdesign.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>Revolution Web Design Blog</title>
				<link>http://www.revolutionwebdesign.com/blog/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>5 CSS3 Techniques For Major Browsers - using jQuery???</title>
				<link>http://www.revolutionwebdesign.com/blog/index.cfm/2009/2/26/5-CSS3-Techniques-For-Major-Browsers--using-jQuery</link>
				<description>
				
				yah, great post, from a site that i found while reading
some tweets this morning. thanks ray camden for the point
in the direction, this is a cool little explanation
of 5 different things you can do with jQuery that used
to be cumbersome, if not down right impossible with plain old
css.

anyhow, &lt;a href=&quot;http://www.noupe.com/jquery/5-css3-techniques-for-major-browsers-using-the-power-of-jquery.html&quot;&gt;check this post out... cool info.&lt;/a&gt; 
				</description>
				
				<category>Just plain cool</category>				
				
				<category>Web Design</category>				
				
				<category>sites to remember</category>				
				
				<category>Code</category>				
				
				<category>Javascript</category>				
				
				<pubDate>Thu, 26 Feb 2009 06:09:00 -0600</pubDate>
				<guid>http://www.revolutionwebdesign.com/blog/index.cfm/2009/2/26/5-CSS3-Techniques-For-Major-Browsers--using-jQuery</guid>
				
			</item>
			
			<item>
				<title>Thickbox + Jquery = Great lightbox effect!</title>
				<link>http://www.revolutionwebdesign.com/blog/index.cfm/2008/2/16/Thickbox--Jquery--Great-lightbox-effect</link>
				<description>
				
				so, im doing a new site for a friend and had to implement a new web 2.0 style (woo hoo yeah woo) lightbox effect.  well, after toying around with &lt;a href=&quot;http://moofx.mad4milk.net/&quot;&gt;mooFX&lt;/a&gt;, &lt;a href=&quot;http://script.aculo.us&quot;&gt;scriptaculous&lt;/a&gt; and &lt;a href=&quot;http://jquery.com/&quot;&gt;jquery (by itself)&lt;/a&gt;, i got really really frustrated.  the code seemed to be bloated (as ive read now), the visuals were kinda klunky, and it just was more than i needed... thankfully, the dude who wrote this, thinned things out, and it works like a charm...

&lt;more&gt;

so, here we have &lt;a href=&quot;http://jquery.com/demo/thickbox/&quot;&gt;THICKBOX&lt;/a&gt; - a great tool built on jQuery that needs, &lt;a href=&quot;http://code.jquery.com/jquery-latest.js&quot;&gt;jquery&apos;s latest build&lt;/a&gt;, the &lt;a href=&quot;http://jquery.com/demo/thickbox/thickbox-code/thickbox.css&quot;&gt;thickbox.css file&lt;/a&gt;, and the &lt;a href=&quot;http://jquery.com/demo/thickbox/thickbox-code/thickbox.js&quot;&gt;thickbox.js&lt;/a&gt; file to include.  literally, its as simple as this... for the javascript files

&lt;code&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;path-to-file/jquery.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;path-to-file/thickbox.js&quot;&gt;&lt;/script&gt;
&lt;/code&gt;

and like this... for the .css file

&lt;code&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;path-to-file/thickbox.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;/code&gt;

and then for the ajax part of it, and to actually make it work, use this

&lt;code&gt;
Description:

Use a hidden HTTP request (AJAX) to fetch files from the same server and have ThickBox display the contents of the files.
Instructions:

    * Create a link element (&lt;a href&gt;)
    * Give the link a class attribute with a value of thickbox (class=&quot;thickbox&quot;)
    * Provide a path in the href to the file/directory on the server. (href=&quot;ajaxLogin.htm&quot;)
    * In the href attribute, after the URL path to the file, add the following query on to the end of the URL:

      ?height=300&amp;width=300

    * Change the values of height and width in the query accordingly
    * Optionally you may add modal=true to the query string (e.g. ?height=300&amp;width=300&amp;modal=true) so that closing a ThickBox will require calling the tb_remove() function from within the ThickBox. See the login example, where you must click cancel to close the ThickBox.
&lt;/code&gt;

and in the &lt;a href=&quot;&quot;&gt;&lt;/a&gt; tag you want to use to activate the lightbox, simply use this:

&lt;code&gt;
&lt;a href=&quot;_updateProfile_form.html?height=400&amp;width=680&quot; style=&quot;font-size:11px;&quot; class=&quot;thickbox&quot;&gt;Update your profile&lt;/a&gt;
&lt;/code&gt;

where the .html file i have could be any file you want to pull into the div that becomes your lightbox!  its that easy!!!

im a designer/developer hybrid, not quite a javascript expert, and more of a designer than a developer, except when it comes to ColdFusion, whereby, EVERYONE can be a developer :) hahha, ok, anyway, the implementation is soo darn simple, i can only say, that thanks to &lt;a href=&quot;http://www.rainn.org&quot;&gt;jake at rainn&lt;/a&gt; for showing me about thickbox, and dan vega who last night told me about jQuery, not only am i implementing thickbox, but im populating the thickbox window with another external html file, using AJAX!

hah! so, me, a lowly designer is using all these cool things, and it couldnt have been any easier to implement.

head on over to the &lt;a href=&quot;http://jquery.com/demo/thickbox/&quot;&gt;thickbox implementation page&lt;/a&gt;, and check it out...

ps. &lt;a href=&quot;http://www.revolutionwebdesign.com/clients/rainn/rainnmaker/user.cfm&quot; target=&quot;_new&quot;&gt;here is my little piece that im doing&lt;/a&gt; click on &quot;Update Your Profile&quot; on the left side, just a bit down the page...

(the site isnt done yet, its going to be a cool site overall, and the cause is awesome, so, if when im done the site, you feel like &lt;a href=&quot;http://donate.rainn.org&quot;&gt;donating to RAINN, go here, and do so. &lt;/a&gt; thanks!) 
				</description>
				
				<category>Just plain cool</category>				
				
				<category>Web Design</category>				
				
				<category>ColdFusion</category>				
				
				<category>Code</category>				
				
				<category>Javascript</category>				
				
				<pubDate>Sat, 16 Feb 2008 09:07:00 -0600</pubDate>
				<guid>http://www.revolutionwebdesign.com/blog/index.cfm/2008/2/16/Thickbox--Jquery--Great-lightbox-effect</guid>
				
			</item>
			
			<item>
				<title>cfwindow for cf7</title>
				<link>http://www.revolutionwebdesign.com/blog/index.cfm/2008/1/7/cfwindow-for-cf7</link>
				<description>
				
				dan vega, a tireless cf developer has created a great little custom tag that enables cf developers who are still on cf7 to have cfwindow like functionality by extending the extjs library.

here is a link to the &lt;a href=&quot;http://cfwindow.riaforge.org&quot;&gt;riaforge page&lt;/a&gt;, and here is a &lt;a href link = &quot;http://www.danvega.org/examples/cfwindow/&quot;&gt;link to his demo page&lt;/a&gt;. 
				</description>
				
				<category>Code</category>				
				
				<category>ColdFusion</category>				
				
				<category>Javascript</category>				
				
				<pubDate>Mon, 07 Jan 2008 10:11:00 -0600</pubDate>
				<guid>http://www.revolutionwebdesign.com/blog/index.cfm/2008/1/7/cfwindow-for-cf7</guid>
				
			</item>
			
			<item>
				<title>Got API? The most comprehensive API Collection on the Web</title>
				<link>http://www.revolutionwebdesign.com/blog/index.cfm/2007/3/19/Got-API-The-most-comprehensive-API-Collection-on-the-Web</link>
				<description>
				
				Found a cool little site, &lt;a href=&quot;http://www.gotapi.com/index.html&quot;&gt;GotAPI.com&lt;/a&gt;, &lt;b&gt;&quot;The most comprehensive API Collection on the Web&quot;&lt;/b&gt;, 
that VERY clearly lays out some very handy 
information about all your favorite web languages, 
and other API&apos;s in a user interface, that makes accesing
the information, QUITE EASY.
&lt;P /&gt;
Included on the site: PHP, Ruby/Rails, Python,
Perl, Macromedia, Groovy, Drupal CMS, Flickr
Prolog, Databases, JAVA, Java2ME, Apache Ant,
HTML, Cascading Style Sheets (CSS), JavaScript/HTML DOM,
AJAX and Frameworks, XML, C/C++
&lt;P/&gt;
I was poking around for quotedValueList as a
type of function, google popped this site up
for me, and im quite impressed.  Mostly, I&apos;m
impressed because it also allows for user input
of information.
&lt;P /&gt;
Anyway, check it out... its quite impressive
and very well done! The usability is spot on!
&lt;P /&gt;

&lt;a href=&quot;http://www.gotapi.com/index.html&quot;&gt;GotApi.com&lt;/a&gt; 
				</description>
				
				<category>Just plain cool</category>				
				
				<category>Code</category>				
				
				<category>ColdFusion</category>				
				
				<category>Javascript</category>				
				
				<pubDate>Mon, 19 Mar 2007 16:56:00 -0600</pubDate>
				<guid>http://www.revolutionwebdesign.com/blog/index.cfm/2007/3/19/Got-API-The-most-comprehensive-API-Collection-on-the-Web</guid>
				
			</item>
			
			<item>
				<title>Escapa! &lt;span style=&quot;text-decoration:line-through&quot;&gt;Flash&lt;/span&gt; Javascript game of the day</title>
				<link>http://www.revolutionwebdesign.com/blog/index.cfm/2006/2/6/Escapa-Flash-game-of-the-day</link>
				<description>
				
				yet another cool little flash game makes its rounds through the web, and they always seem to to end up here.

this one is fun, a bit simple, YOU&apos;D THINK!   well, think again, this is fun, this is tough, and there is a pattern that if you can figure out... will make your stay quite rewardable!

from what i hear of you slam past 18, you are doing good.  at the time of this post, i can barely get past 17.

&lt;a href=&quot;http://members.iinet.net.au/~pontipak/redsquare.html&quot;&gt;http://members.iinet.net.au/~pontipak/redsquare.html&lt;/a&gt; 
				</description>
				
				<category>Flash games</category>				
				
				<category>Javascript</category>				
				
				<pubDate>Mon, 06 Feb 2006 11:52:00 -0600</pubDate>
				<guid>http://www.revolutionwebdesign.com/blog/index.cfm/2006/2/6/Escapa-Flash-game-of-the-day</guid>
				
			</item>
			
			<item>
				<title>prevent double-click form submit</title>
				<link>http://www.revolutionwebdesign.com/blog/index.cfm/2004/10/20/prevent-doubleclick-form-submit</link>
				<description>
				
				this handy little snippet will prevent your users from double-clicking a form submission.  its quick its easy, and ALL websites should have it.  imagine the processing that goes on due to a double clicker who double click&apos;s EVERYTHING!

 onclick=&quot;this.disabled=true;this.form.submit();&quot;

drop that in the end of your submit button.

here is the full code (be sure to put this in between &lt;form&gt;&lt;/form&gt; tags:

&lt;div class=&quot;code&quot;&gt;&lt;FONT COLOR=NAVY&gt;&lt;FONT COLOR=FF8000&gt;&amp;lt;input &lt;br&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; type=&lt;FONT COLOR=BLUE&gt;&quot;submit&quot;&lt;/FONT&gt; &lt;br&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; value=&lt;FONT COLOR=BLUE&gt;&quot;Submit&quot;&lt;/FONT&gt; &lt;BR&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; onclick=&lt;FONT COLOR=BLUE&gt;&quot;this.disabled=true,this.form.submit();&quot;&lt;/FONT&gt; /&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/div&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<pubDate>Wed, 20 Oct 2004 21:02:00 -0600</pubDate>
				<guid>http://www.revolutionwebdesign.com/blog/index.cfm/2004/10/20/prevent-doubleclick-form-submit</guid>
				
			</item>
			
			<item>
				<title>another cool javascript</title>
				<link>http://www.revolutionwebdesign.com/blog/index.cfm/2004/9/28/another-cool-javascript</link>
				<description>
				
				the ever elusive type-and-look ahead select boxes (combo boxes) that windows programmers had for years is available in javascript form.

thanks to &lt;a href=&quot;http://www.dannyg.com&quot; style=&quot;color:DodgerBlue;&quot;&gt;danny goodman&lt;/a&gt; for this bit of code that makes type and look ahead functionality possible...

&lt;a href=&quot;http://www.oreillynet.com/pub/a/javascript/2003/09/03/dannygoodman.html&quot;&gt;link to type and look ahead javascript code&lt;/a&gt;

the code:
&lt;BR&gt;
&lt;div class=&quot;code&quot;&gt;/***************&lt;br&gt;
   &lt;FONT COLOR=BLUE&gt;&quot;search&quot;&lt;/FONT&gt;&lt;br&gt;
  select Element Type-Ahead for IE/Windows by Danny Goodman (www.dannyg.com)&lt;br&gt;
  A bonus recipe for readers of O&apos;Reilly&apos;s&lt;br&gt;
    &lt;FONT COLOR=BLUE&gt;&quot;JavaScript &amp; DHTML Cookbook&quot;&lt;/FONT&gt;&lt;br&gt;
  This recipe first published at O&apos;Reilly Network (www.oreillynet.com)&lt;br&gt;
  For full implementation notes, read the article.&lt;br&gt;
****************/&lt;br&gt;
   &lt;br&gt;&lt;FONT COLOR=GRAY&gt;&lt;I&gt;
// global storage object for type-ahead info, including reset() method&lt;/I&gt;&lt;/FONT&gt;
var typeAheadInfo = {last:0, &lt;br&gt;
                     accumString:&lt;FONT COLOR=BLUE&gt;&quot;&quot;&lt;/FONT&gt;, &lt;br&gt;
                     delay:500,&lt;br&gt;
                     timeout:null, &lt;br&gt;
                     reset:function() {this.last=0; this.accumString=&lt;FONT COLOR=BLUE&gt;&quot;&quot;&lt;/FONT&gt;}&lt;br&gt;
                    };&lt;br&gt;&lt;FONT COLOR=GRAY&gt;&lt;I&gt;
// function invoked by select element&apos;s onkeydown event handler&lt;/I&gt;&lt;/FONT&gt;
function typeAhead() {&lt;br&gt;
  &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // limit processing to IE event model supporter; don&apos;t trap Ctrl+keys&lt;/I&gt;&lt;/FONT&gt;
   if (window.event &amp;&amp; !window.event.ctrlKey) {&lt;br&gt;
     &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // timer for current event&lt;/I&gt;&lt;/FONT&gt;
      var now = new Date();&lt;br&gt;
     &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // process for an empty accumString or an event within [delay] ms of last&lt;/I&gt;&lt;/FONT&gt;
      if (typeAheadInfo.accumString == &lt;FONT COLOR=BLUE&gt;&quot;&quot;&lt;/FONT&gt; || now - typeAheadInfo.last &amp;lt; typeAheadInfo.delay) {&lt;br&gt;
        &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // make shortcut event object reference&lt;/I&gt;&lt;/FONT&gt;
         var evt = window.event;&lt;br&gt;
        &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // get reference to the select element&lt;/I&gt;&lt;/FONT&gt;
         var selectElem = evt.srcElement;&lt;br&gt;
        &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // get typed character ASCII value&lt;/I&gt;&lt;/FONT&gt;
         var charCode = evt.keyCode;&lt;br&gt;
        &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // get the actual character, converted to uppercase&lt;/I&gt;&lt;/FONT&gt;
         var newChar =  String.fromCharCode(charCode).toUpperCase();&lt;br&gt;
        &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // append new character to accumString storage&lt;/I&gt;&lt;/FONT&gt;
         typeAheadInfo.accumString += newChar;&lt;br&gt;
        &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // grab all select element option objects as an array&lt;/I&gt;&lt;/FONT&gt;
         var selectOptions = selectElem.options;&lt;br&gt;
        &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // prepare local variables for use inside loop&lt;/I&gt;&lt;/FONT&gt;
         var txt, nearest;&lt;br&gt;
        &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // look through all options for a match starting with accumString&lt;/I&gt;&lt;/FONT&gt;
         for (var i = 0; i &amp;lt; selectOptions.length; i++) {&lt;br&gt;
           &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // convert each item&apos;s text to uppercase to facilitate comparison&lt;/I&gt;&lt;/FONT&gt;
           &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // (use value property if you want match to be for hidden option value)&lt;/I&gt;&lt;/FONT&gt;
            txt = selectOptions[i].text.toUpperCase();&lt;br&gt;
           &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // record nearest lowest index, if applicable&lt;/I&gt;&lt;/FONT&gt;
            nearest = (typeAheadInfo.accumString &amp;gt; txt.substr(&lt;FONT COLOR=BLUE&gt;0&lt;/FONT&gt;, typeAheadInfo.accumString.length)) ? i : nearest;&lt;br&gt;
           &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // process if accumString is at start of option text&lt;/I&gt;&lt;/FONT&gt;
            if (txt.indexOf(typeAheadInfo.accumString) == 0) {&lt;br&gt;
              &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // stop any previous timeout timer&lt;/I&gt;&lt;/FONT&gt;
               clearTimeout(typeAheadInfo.timeout);&lt;br&gt;
              &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // store current event&apos;s time in object &lt;/I&gt;&lt;/FONT&gt;
               typeAheadInfo.last = now;&lt;br&gt;
              &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // reset typeAhead properties in [delay] ms unless cleared beforehand&lt;/I&gt;&lt;/FONT&gt;
               typeAheadInfo.timeout = setTimeout(&lt;FONT COLOR=BLUE&gt;&quot;typeAheadInfo.reset()&quot;&lt;/FONT&gt;, typeAheadInfo.delay);&lt;br&gt;
              &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // visibly select the matching item&lt;/I&gt;&lt;/FONT&gt;
               selectElem.selectedIndex = i;&lt;br&gt;
              &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // prevent default event actions and propagation&lt;/I&gt;&lt;/FONT&gt;
               evt.cancelBubble = true;&lt;br&gt;
               evt.returnValue = false;&lt;br&gt;
              &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // exit function&lt;/I&gt;&lt;/FONT&gt;
               return false;   &lt;br&gt;
            }            &lt;br&gt;
         }&lt;br&gt;
        &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // if a next lowest match exists, select it&lt;/I&gt;&lt;/FONT&gt;
         if (nearest != null) {&lt;br&gt;
            selectElem.selectedIndex = nearest;&lt;br&gt;
         }&lt;br&gt;
      } else {&lt;br&gt;
        &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // not a desired event, so clear timeout&lt;/I&gt;&lt;/FONT&gt;
         clearTimeout(typeAheadInfo.timeout);&lt;br&gt;
      }&lt;br&gt;
     &lt;FONT COLOR=GRAY&gt;&lt;I&gt; // reset global object&lt;/I&gt;&lt;/FONT&gt;
      typeAheadInfo.reset();&lt;br&gt;
   }&lt;br&gt;
   return true;&lt;br&gt;
}&lt;/div&gt;

what to do with the drop down box:

&lt;div class=&quot;code&quot;&gt;&lt;FONT COLOR=NAVY&gt;&lt;FONT COLOR=FF8000&gt;&amp;lt;select onkeydown=&lt;FONT COLOR=BLUE&gt;&quot;typeAhead()&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;br&gt;
 &lt;FONT COLOR=NAVY&gt;&lt;FONT COLOR=FF8000&gt;&amp;lt;option value=&lt;FONT COLOR=BLUE&gt;&quot;tony&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;tony&lt;br&gt;
 &lt;FONT COLOR=NAVY&gt;&lt;FONT COLOR=FF8000&gt;&amp;lt;option value=&lt;FONT COLOR=BLUE&gt;&quot;your mom&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;your mom&lt;br&gt;
 &lt;FONT COLOR=NAVY&gt;&lt;FONT COLOR=FF8000&gt;&amp;lt;option value=&lt;FONT COLOR=BLUE&gt;&quot;your dad&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;your dad&lt;br&gt;
 &lt;FONT COLOR=NAVY&gt;&lt;FONT COLOR=FF8000&gt;&amp;lt;option value=&lt;FONT COLOR=BLUE&gt;&quot;krishna&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;krishna&lt;br&gt;
 &lt;FONT COLOR=NAVY&gt;&lt;FONT COLOR=FF8000&gt;&amp;lt;option value=&lt;FONT COLOR=BLUE&gt;&quot;rocky&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;rocky&lt;br&gt;
&lt;FONT COLOR=NAVY&gt;&lt;FONT COLOR=FF8000&gt;&amp;lt;/select&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/div&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<pubDate>Tue, 28 Sep 2004 12:06:00 -0600</pubDate>
				<guid>http://www.revolutionwebdesign.com/blog/index.cfm/2004/9/28/another-cool-javascript</guid>
				
			</item>
			</channel></rss>