<?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>cpradio's tidbits of information &#187; kiosk</title>
	<atom:link href="http://cpradio.org/categories/projects/kiosk/feed/" rel="self" type="application/rss+xml" />
	<link>http://cpradio.org</link>
	<description>my life experience and information that may help others find what they need</description>
	<lastBuildDate>Sat, 05 Sep 2009 12:38:54 +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>Refactoring &#8211; What a time-saver</title>
		<link>http://cpradio.org/work/refactoring-saves-you-time-in-many-ways/</link>
		<comments>http://cpradio.org/work/refactoring-saves-you-time-in-many-ways/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 02:52:52 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/work/refactoring-saves-you-time-in-many-ways/</guid>
		<description><![CDATA[This weekend has been a nice relaxing weekend for me and so when I got back home this afternoon (on Sunday the 16th), I was in a great mood to refactor some of my kiosk code base.  Now, I should start by saying, I decided to refactor code instead of write new code tonight [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend has been a nice relaxing weekend for me and so when I got back home this afternoon (on Sunday the 16th), I was in a great mood to refactor some of my kiosk code base.  Now, I should start by saying, I decided to refactor code instead of write new code tonight because I wanted to lessen the number of files that needed to load in the Ajax functionality.</p>
<p>Kiosk, uses Ajax in interesting ways to provide a better experience, but with that, the Ajax applications were built as each page was assembled.  This caused functionality across pages to get a bit messy or functionality shared across pages to get thrown into individual files.  Well the problem with individual files, is that is yet another file for the browser to download.</p>
<p>So before I get any further, let me discuss refactoring and how it can solve many performance binds your application may be experiencing.</p>
<p>To start off, refactoring is taking common code, or code that is used across pages or frequently and moving it to a more global location so it can be called easier and the code only has to be written once.</p>
<p>So where can this help?</p>
<ul>
<li>First of all, by refactoring code into a single global file, you can limit the number of HTTP requests if that file is accessible via the web.  Since your common code is in a single file, the browser only has to fetch that code once, and will then likely cache that file for each page after, giving you even better performance.</li>
<li>Secondly, by placing the common code in a global method/function, you are writing less code.  As now when you need to call that code on your second page, it is already written, so just call the function.  Otherwise, you would need to write the code all over again.</li>
<li>Thirdly, less code equals smaller files.  By refactoring your code, you can have smaller file sizes and in turn that is quicker to download, quicker to parse, and quicker to execute.</li>
</ul>
<p>Now in my situation, I took about 4 JavaScript files and combined them into a single file adequately named &#8220;general.js&#8221;.  The file contained code to automatically log the user out after a set amount of inactivity in the UI (User Interface).  Secondly, it contained the version checking mechanism calls that see if they are running the latest version of the software.  Unfortunately, those are the only two things it does right now, but as the project progresses, I am sure more utilities will get added in this file.</p>
<p>My next task is to refactor the Data Grid functionality so it is 1) XHTML, 2) easy to build complex columns with complex rows, 3) customizable by identifying StyleSheet classes for the columns and rows.  Hopefully, I can get my head around this idea and get it working with little trouble to the programmer.</p>
<p>So what can you think of that you need to refactor?  What performance gains do you suspect you will achieve with the refactoring you do?  Any performance markers?</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/work/refactoring-saves-you-time-in-many-ways/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fun with Kiosk</title>
		<link>http://cpradio.org/code/ajax/fun-with-kiosk/</link>
		<comments>http://cpradio.org/code/ajax/fun-with-kiosk/#comments</comments>
		<pubDate>Sat, 10 Feb 2007 17:20:20 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/code/ajax/fun-with-kiosk/</guid>
		<description><![CDATA[I am having a blast writing some of the things in kiosk.  I have put in a few things, I am fairly certain no one has done before.  The use of AJAX is completely written throughout the application and it has allowed the application to be placed on a level like no other.
For [...]]]></description>
			<content:encoded><![CDATA[<p>I am having a blast writing some of the things in <a href="http://kiosk.cpradio.org/">kiosk</a>.  I have put in a few things, I am fairly certain no one has done before.  The use of AJAX is completely written throughout the application and it has allowed the application to be placed on a level like no other.</p>
<p>For example, imagine having the ability to upload 1000 images for all of your products using <a href="http://cpcommerce.cpradio.org/">cpCommerce</a> or a different cart variant.  You would have to upload them individually.  Now, take a look at how <a href="http://kiosk.cpradio.org/">kiosk</a> handles it.</p>
<div><a href="http://cpradio.org/images/kiosk_image_area.jpg"><img src="http://cpradio.org/images/th_kiosk_image_area.jpg" alt="Kiosk Image Area" title="Kiosk Image Area" style="border: 1px solid #000000; margin-right: 10px;" align="left" width="300" height="199" /></a> Let&#8217;s take a look at the Kiosk Image Area located in the Administration Area.  This area has many options, but look at the intriguing &#8220;Find FTP&#8217;d Images&#8221;.  Now that is what I am talking about!</div>
<p><br clear="both" /></p>
<div><img src="http://cpradio.org/images/kiosk_image_folder.jpg" alt="Kiosk Image Folder" title="Kiosk Image Folder" style="border: 1px solid #000000; margin-left: 10px;" align="right" width="300" height="199" /> Now, this is the folder where the images are stored in Kiosk.  Look carefully, and you will see a folder named &#8220;FTP&#8221;.  This is the folder where your 1000 images should be uploaded to.</div>
<p><br clear="both" /></p>
<div><a href="http://cpradio.org/images/kiosk_image_folder_with_images.jpg"><img src="http://cpradio.org/images/th_kiosk_image_folder_with_images.jpg" alt="Kiosk Image Folder With Images" title="Kiosk Image Folder With Images" style="border: 1px solid #000000; margin-right: 10px;" align="left" width="300" height="199" /></a> To show you that this works, I have placed over 600 images in the folder!  I realize that isn&#8217;t exactly 1000, but it should be enough to prove it will work with 1000 as well.  Now, that I have the images placed, I need to head back to the Administration Area to complete this process.</div>
<p><br clear="both" /></p>
<div><a href="http://cpradio.org/images/kiosk_image_inserting_images.jpg"><img src="http://cpradio.org/images/th_kiosk_image_inserting_images.jpg" alt="Kiosk Image Inserting the Images" title="Kiosk Image Inserting the Images" style="border: 1px solid #000000; margin-left: 10px;" align="right" width="300" height="199" /></a> Back in the Images Administration Area, I clicked on the &#8220;Find FTP&#8217;d Images&#8221; and this is what you will be presented with!  <em>Now realize, only one process of this is able to run at a time.  So if you have 4 people updating the store, when one person runs this command, it will prevent the other 3 from running it too.</em>  With that said, the process also checks to see where in the process it is.  For example, it checks every few seconds to see if it is finished inserting the images, or if it is still running.  Now, I know what you are thinking.  What about the Time Out Limit in PHP?  How do you get around that?  Well that is my secret and you can&#8217;t figure it out unless you pull down the <a href="http://kiosk.cpradio.org/kiosksvn/">Source Code from the SVN Repository</a>.</div>
<p><br clear="both" /></p>
<div><a href="http://cpradio.org/images/kiosk_image_inserting_images_complete.jpg"><img src="http://cpradio.org/images/th_kiosk_image_inserting_images_complete.jpg" alt="Kiosk Image Inserting the Images Complete" title="Kiosk Image Inserting the Images Complete" style="border: 1px solid #000000; margin-right: 10px;" align="left" width="300" height="199" /></a> Finally, when it is all said and done, you the user are prompted with this final screen.  The process is complete. </div>
<p><br clear="both" /></p>
<div><a href="http://cpradio.org/images/kiosk_image_listing.jpg"><img src="http://cpradio.org/images/th_kiosk_image_listing.jpg" alt="Kiosk Image Listing" title="Kiosk Image Listing" style="border: 1px solid #000000; margin-left: 10px;" align="right" width="300" height="199" /></a> Upon clicking on &#8220;Close&#8221; it will reload the page to show all of your images now listed within the application.  That&#8217;s it!  It doesn&#8217;t get any easier than that!  Feel free to comment and leave your remarks, as this is going to make <a href="http://kiosk.cpradio.org/">kiosk</a> stand out from Joe Smoe and you got my word on that!</div>
<p><br clear="both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/code/ajax/fun-with-kiosk/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>kiosk Development</title>
		<link>http://cpradio.org/code/javascript/kiosk-development/</link>
		<comments>http://cpradio.org/code/javascript/kiosk-development/#comments</comments>
		<pubDate>Thu, 01 Feb 2007 11:52:08 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/code/javascript/kiosk-development/</guid>
		<description><![CDATA[kiosk is progressing very well.  I have started the programming some of the more significant portions of the project, such as, uploading Image, and creating Categories.  Unlike cpCommerce images will not be handled during the Category, Product, Manufacturer, etc. creation.  Instead, it is its&#8217; own section.  Why?  This way you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://kiosk.cpradio.org/">kiosk</a> is progressing very well.  I have started the programming some of the more significant portions of the project, such as, uploading Image, and creating Categories.  Unlike <a href="http://cpcommerce.cpradio.org/">cpCommerce</a> images will not be handled during the Category, Product, Manufacturer, etc. creation.  Instead, it is its&#8217; own section.  Why?  This way you can upload all of your images via FTP, click a nice little link stating &#8220;Find Uploaded Images&#8221; and it will insert them into your database for you.  Then all you have to do is assign them to a Product, Category, Manufacturer, or Both, or All Three!</p>
<p>Images are entirely reusable.  So if you want to show a Product&#8217;s Image as the Category Image too, YOU CAN!  And you can do it without uploading another file!  I like to think <a href="http://kiosk.cpradio.org/">kiosk</a> is taking what <a href="http://cpcommerce.cpradio.org/">cpCommerce</a> started and taking it to a whole new level learning from its&#8217; mistakes, and hopefully you all agree.</p>
<p>Well that is enough on that for now, I will update everyone once again, when I have these sections entirely done.  Then you can pull it from the <a href="http://kiosk.cpradio.org/kiosksvn/">kiosk subversion repository</a> and give it a try yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/code/javascript/kiosk-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax Search is Over</title>
		<link>http://cpradio.org/code/javascript/ajax-search-is-over/</link>
		<comments>http://cpradio.org/code/javascript/ajax-search-is-over/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 03:36:08 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/code/javascript/ajax-search-is-over/</guid>
		<description><![CDATA[I have settled on ASP.NET AJAX 1.0.  Why you ask?  Well for many reasons!  One, it is written well.  Lacks all the visual effects, but seriously, who needs those?  It is fast, as it uses JSON, and that is a MAJOR surprise, as I figured M$ would be all over [...]]]></description>
			<content:encoded><![CDATA[<p>I have settled on <a href="http://weblogs.asp.net/scottgu/archive/2007/01/23/asp-net-ajax-1-0-released.aspx">ASP.NET AJAX 1.0</a>.  Why you ask?  Well for many reasons!  One, it is written well.  Lacks all the visual effects, but seriously, who needs those?  It is fast, as it uses JSON, and that is a MAJOR surprise, as I figured M$ would be all over using XML.  Secondly, if you pair it up with <a href="http://codeplex.com/phpmsajax">PHP for Microsoft AJAX</a> it just flat out works nicely and costs little effort to write scripts for!</p>
<p>I wrote a few sample scripts using it in less than 5 minutes!  5 minutes!!  I cannot stress that enough.  I was amazed at the type of complexity I could write in just a few minutes of using it.  Now, I am not a &#8220;big&#8221; M$ fan, but I am willing to give credit when due, and they deserve credit for this.  I am truly pleased with the fact it works in Firefox, it works in IE, and it probably works in Opera (though I haven&#8217;t tested it).  It has files for all languages, to handle currencies, dates, etc.  Totally amazing.</p>
<p>I have so many plans on how to use this to perform more advance functionality in several of my applications and best of all, I didn&#8217;t have to write my own XmlHttpRequest methods.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/code/javascript/ajax-search-is-over/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Talk about accomplishing a lot&#8230;</title>
		<link>http://cpradio.org/personal/talk-about-accomplishing-a-lot/</link>
		<comments>http://cpradio.org/personal/talk-about-accomplishing-a-lot/#comments</comments>
		<pubDate>Sun, 07 Jan 2007 22:29:50 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[cpCommerce]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/2007/01/07/talk-about-accomplishing-a-lot/</guid>
		<description><![CDATA[cpCommerce
I am not sure what put me in such a great mood Friday evening, but Friday evening I completed 10 known bugs in cpCommerce plus added a new feature.  Then to top it off further, I modified my shell script that builds the SVN repository every Sunday morning so it would also build a [...]]]></description>
			<content:encoded><![CDATA[<p><b>cpCommerce</b><br />
I am not sure what put me in such a great mood Friday evening, but Friday evening I completed 10 known bugs in <a href="http://cpcommerce.cpradio.org/">cpCommerce</a> plus added a new feature.  Then to top it off further, I modified my shell script that builds the SVN repository every Sunday morning so it would also build a &#8220;diff.patch&#8221; file describing the difference between the previous version and the newer version.  Then on Sunday it was discovered that a bug dealing with the &#8220;discount&#8221; feature existed in always providing every customer with a 20% discount on their purchase.  Within a few hours, that was fixed and the release file was rebuilt manually so everyone could download the new ZIP file.</p>
<p><b>kiosk</b><br />
I also accomplished a lot in <a href="http://kiosk.cpradio.org">kiosk</a> over the weekend too.  Finalized some of the installation processes, and started working heavily on the modules in the Administration Control Panel.  I also refined major parts of the framework to fit better with the overall goal of being a &#8220;plug-n-play template system.&#8221;</p>
<p><b>Linux</b><br />
Finally, I have been spending my weekend trying to get my media center PC up and running again after a Ubuntu upgrade.  Not sure what caused the FREAKIN&#8217; issue, but I am not very appreciative about it.  Overall, this is the first day I have tried to fix it since I discovered it being down on Saturday morning, so it might not really be a &#8220;major&#8221; issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/talk-about-accomplishing-a-lot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kiosk Progress</title>
		<link>http://cpradio.org/personal/kiosk-progress/</link>
		<comments>http://cpradio.org/personal/kiosk-progress/#comments</comments>
		<pubDate>Sat, 02 Dec 2006 03:11:28 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/2006/12/01/kiosk-progress/</guid>
		<description><![CDATA[I couldn&#8217;t be more pleased with how well my new project is going.  kiosk is  advancing nicely and it seems to be getting better each day I work on it.   For the most part, almost all of the tables are setup (I am now at  approximately 43 tables).  All [...]]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t be more pleased with how well my new project is going.  kiosk is  advancing nicely and it seems to be getting better each day I work on it.   For the most part, almost all of the tables are setup (I am now at  approximately 43 tables).  All of the base classes are written and their  private variables defined, however, the methods/functions still need written  for almost all of them.</p>
<p>The installation process is what I am most proud of.  So far, it works like a  charm.  All I have left for the Installer is the &#8220;Configuration&#8221; section.  It  will be a while before that section is complete, as I have a feeling, as I  write the rest of the application, more settings will be needed.<br />
To help feed your thirst on what kiosk looks like and the tables it consists  of, enjoy the screenshots below.<br />
<!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191126-1.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191126-1.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk01.png" alt="kiosk01.png" src="http://cpradio.org/wp-photos/thumb.20061201-191126-1.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191126-2.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191126-2.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk05.png" alt="kiosk05.png" src="http://cpradio.org/wp-photos/thumb.20061201-191126-2.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191126-3.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191126-3.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk06.png" alt="kiosk06.png" src="http://cpradio.org/wp-photos/thumb.20061201-191126-3.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-4.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1292');return false;" href="http://cpradio.org/wp-photos/20061201-191127-4.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk07.png" alt="kiosk07.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-4.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-5.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1292');return false;" href="http://cpradio.org/wp-photos/20061201-191127-5.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk08.png" alt="kiosk08.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-5.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-6.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1292');return false;" href="http://cpradio.org/wp-photos/20061201-191127-6.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk09.png" alt="kiosk09.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-6.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-7.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191127-7.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk02.png" alt="kiosk02.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-7.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-8.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191127-8.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk03.png" alt="kiosk03.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-8.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-9.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191127-9.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk04.png" alt="kiosk04.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-9.jpg" /></a></div>
<p>Now, you didn&#8217;t think I would show you my &#8220;real&#8221; email address did you?  Oh,  and here are the screenshots if you were to revisit the prior installation  pages:<br />
<!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191128-10.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=867,width=1292');return false;" href="http://cpradio.org/wp-photos/20061201-191128-10.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk12.png" alt="kiosk12.png" src="http://cpradio.org/wp-photos/thumb.20061201-191128-10.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191128-11.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=867,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191128-11.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk11.png" alt="kiosk11.png" src="http://cpradio.org/wp-photos/thumb.20061201-191128-11.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191128-12.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=867,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191128-12.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk10.png" alt="kiosk10.png" src="http://cpradio.org/wp-photos/thumb.20061201-191128-12.jpg" /></a></div>
<p>Hope you enjoyed those!</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/kiosk-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.249 seconds -->
