<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1757027273178752782</id><updated>2011-04-21T19:37:58.428-07:00</updated><category term='http://www.blogger.com/img/gl.link.gif'/><title type='text'>EIW-CK&amp;Paul</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>24</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-2862033208771351075</id><published>2008-02-18T21:50:00.000-08:00</published><updated>2008-02-18T21:52:07.204-08:00</updated><title type='text'>scrpiting for baiscstamp</title><content type='html'>&lt;span style="font-size:85%;"&gt;' {$STAMP BS2}&lt;br /&gt;' {$PBASIC 2.5}&lt;br /&gt;&lt;br /&gt;state VAR WORD&lt;br /&gt;counter VAR WORD&lt;br /&gt;led_counter VAR WORD&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;INPUT 4 'switch wipe open&lt;br /&gt;INPUT 5 'switch wipe close&lt;br /&gt;INPUT 9 'sensor inside&lt;br /&gt;INPUT 10 'sensor outside&lt;br /&gt;INPUT 11 'sensor outside&lt;br /&gt;INPUT 12 'sensor outside&lt;br /&gt;&lt;br /&gt;OUTPUT 13&lt;br /&gt;OUTPUT 0&lt;br /&gt;OUTPUT 1&lt;br /&gt;&lt;br /&gt;check:&lt;br /&gt;   IF IN4 = 1 THEN s_0 'already opened&lt;br /&gt;   IF IN5 = 1 THEN s_1 'already closed&lt;br /&gt;GOTO check&lt;br /&gt;&lt;br /&gt;s_0:&lt;br /&gt;   state = 0 'already opened&lt;br /&gt;   GOSUB s&lt;br /&gt;GOTO main&lt;br /&gt;&lt;br /&gt;s_1:&lt;br /&gt;   state = 1 'already closed&lt;br /&gt;   GOSUB s&lt;br /&gt;GOTO main&lt;br /&gt;&lt;br /&gt;main:&lt;br /&gt;   led_counter = 0&lt;br /&gt;   IF IN10 = 0 AND IN11 = 0 AND IN12 = 0 AND state = 1 THEN open&lt;br /&gt;   IF IN9 = 1 AND IN10 = 1 AND IN11 = 1 AND IN12 = 1 AND state = 0 THEN w&lt;br /&gt;GOTO main&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;w:&lt;br /&gt;   FOR counter = 1 TO 10&lt;br /&gt;   IF IN9 = 0 OR IN10 = 0 OR IN11 = 0 OR IN12 = 0 THEN main&lt;br /&gt;   OUT1 = 1 'testing light&lt;br /&gt;   PAUSE 500&lt;br /&gt;   OUT1 = 0&lt;br /&gt;   PAUSE 500&lt;br /&gt;   NEXT&lt;br /&gt;GOTO close&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;open:&lt;br /&gt;   led_counter = led_counter + 1&lt;br /&gt;   IF IN4 = 1 THEN s_0&lt;br /&gt;   PULSOUT 13, 1000&lt;br /&gt;   PAUSE 20&lt;br /&gt;   IF led_counter=10  THEN o_led_on&lt;br /&gt;   IF led_counter=20 THEN o_led_off&lt;br /&gt;GOTO open&lt;br /&gt;&lt;br /&gt;o_led_on:&lt;br /&gt;   OUT0 = 1&lt;br /&gt;   GOTO open&lt;br /&gt;&lt;br /&gt;o_led_off:&lt;br /&gt;   OUT0 = 0&lt;br /&gt;   led_counter = 0&lt;br /&gt;   GOTO open&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;close:&lt;br /&gt;   led_counter = led_counter + 1&lt;br /&gt;   IF IN5 = 1 THEN s_1&lt;br /&gt;   PULSOUT 13, 500&lt;br /&gt;   PAUSE 20&lt;br /&gt;   IF led_counter=10  THEN c_led_on&lt;br /&gt;   IF led_counter=20 THEN c_led_off&lt;br /&gt;GOTO close&lt;br /&gt;&lt;br /&gt;c_led_on:&lt;br /&gt;   OUT0 = 1&lt;br /&gt;   GOTO close&lt;br /&gt;&lt;br /&gt;c_led_off:&lt;br /&gt;   OUT0 = 0&lt;br /&gt;   led_counter = 0&lt;br /&gt;   GOTO close&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;s:&lt;br /&gt;   OUT0 = 0&lt;br /&gt;   PULSOUT 13, 696&lt;br /&gt;   PAUSE 20&lt;br /&gt;RETURN&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-2862033208771351075?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/2862033208771351075/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=2862033208771351075' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/2862033208771351075'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/2862033208771351075'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/02/scrpiting-for-baiscstamp.html' title='scrpiting for baiscstamp'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-3075342514167976986</id><published>2008-02-17T07:33:00.000-08:00</published><updated>2008-02-17T09:03:29.439-08:00</updated><title type='text'>Interactive Pavilion Final Prototype Description</title><content type='html'>Interactive Pavilion is an interactive kinetic architecture which designed for public resting area. Our design is based on the public area in Central, Hong Kong, where is crowded by many Philippians maid in weekend. We found that the public place is not good enough for people gathering, they have to sit in one straight line and hardly face and talk to each other. They were forced to sit on the ground and gather in a circle to chat and eat. We want to make a changeable structure could serve well for individual resting area and also for friends gathering.&lt;br /&gt;From this concept, we considered to make it interacts with people by the amount of the users. We assumed that we could use some sensor to detect that how many people were in that place. If there are 2-3 people, the structure would keep in one state which is good for stranger to enjoy there own resting area; if there are more than that, maybe 5-6 people, they might be knew each other and would like to enjoy there holiday there for a long time, the structure could be opened or extended to a bigger scale. For further consideration, just because the structure would be moving and changing, to avoid disturbing other people’s rest, the condition to trigger it on should be get all the users permission. So we designed it as a specific motion or something to make the structure work. Maybe it’s not convenience enough, but we thought it would be a good chance for the people to talk and interact with strangers to enhance better social interaction.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-3075342514167976986?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/3075342514167976986/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=3075342514167976986' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/3075342514167976986'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/3075342514167976986'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/02/interactive-pavilion-final-prototype.html' title='Interactive Pavilion Final Prototype Description'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-8556865338585590767</id><published>2008-02-17T03:47:00.001-08:00</published><updated>2008-02-17T20:02:11.258-08:00</updated><title type='text'>using flow</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R7kCx3RgwbI/AAAAAAAAANs/DIcK-ma7kNw/s1600-h/a1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R7kCx3RgwbI/AAAAAAAAANs/DIcK-ma7kNw/s400/a1.jpg" alt="" id="BLOGGER_PHOTO_ID_5168165103058600370" border="0" /&gt;&lt;/a&gt;Status 1(close)&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R7kCyHRgwcI/AAAAAAAAAN0/mjIPG_QVt9M/s1600-h/a2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R7kCyHRgwcI/AAAAAAAAAN0/mjIPG_QVt9M/s400/a2.jpg" alt="" id="BLOGGER_PHOTO_ID_5168165107353567682" border="0" /&gt;&lt;/a&gt;Status 2(open)&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R7ge5nRgwZI/AAAAAAAAANc/xYSw0bB23eg/s1600-h/circle.jpg"&gt; &lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R7ge5nRgwZI/AAAAAAAAANc/xYSw0bB23eg/s400/circle.jpg" alt="" id="BLOGGER_PHOTO_ID_5167914547551453586" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;to make sure the interaction between the user and this structure nice and safe, we set several sensors around the structure.&lt;br /&gt;the sensors could detect are there any peoples are inside or outside the structure, make sure that the structure will not suddenly move to frighten or hurt someone around it.&lt;br /&gt;we use an easy flow chart above to tell how it works&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-8556865338585590767?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/8556865338585590767/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=8556865338585590767' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/8556865338585590767'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/8556865338585590767'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/02/using-flow.html' title='using flow'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_ZkAhhRXRDr4/R7kCx3RgwbI/AAAAAAAAANs/DIcK-ma7kNw/s72-c/a1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-7323753757768577140</id><published>2008-02-17T03:40:00.000-08:00</published><updated>2008-02-17T19:58:47.410-08:00</updated><title type='text'>gears view</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://mdes.designcrossover.net/ck&amp;amp;paul/movement.mov"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R7kBy3RgwaI/AAAAAAAAANk/P96pkorbExo/s400/movement-poster.jpg" alt="" id="BLOGGER_PHOTO_ID_5168164020726841762" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://mdes.designcrossover.net/ck&amp;amp;paul/movement.mov"&gt;http://mdes.designcrossover.net/ck&amp;amp;paul/movement.mov&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;Testing model&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R7gerHRgwYI/AAAAAAAAANU/Z1iuKi8MMVY/s1600-h/power.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R7gerHRgwYI/AAAAAAAAANU/Z1iuKi8MMVY/s400/power.jpg" alt="" id="BLOGGER_PHOTO_ID_5167914298443350402" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R7gdZ3RgwXI/AAAAAAAAANM/-M2560zUm5M/s1600-h/combined.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R7gdZ3RgwXI/AAAAAAAAANM/-M2560zUm5M/s400/combined.jpg" alt="" id="BLOGGER_PHOTO_ID_5167912902578979186" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;actually, in this kinetic structure we used only one motor to be the power source.&lt;br /&gt;we used one big gear in the center with spiral track, one small gear in the motor to transfer power and four gears to make the big gear run stably.&lt;br /&gt;above all the gears, there is a cover with 6 tracks to restrict the motion for the top structure.&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-7323753757768577140?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/7323753757768577140/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=7323753757768577140' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/7323753757768577140'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/7323753757768577140'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/02/gears-view.html' title='gears view'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_ZkAhhRXRDr4/R7kBy3RgwaI/AAAAAAAAANk/P96pkorbExo/s72-c/movement-poster.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-7279244130429292404</id><published>2008-02-15T01:27:00.001-08:00</published><updated>2008-02-17T20:09:23.083-08:00</updated><title type='text'>Final presentation</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://mdes.designcrossover.net/ck&amp;amp;paul/Final3.mov"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R7kEe3RgwfI/AAAAAAAAAOM/EJduBqcfPxs/s400/Final3-poster.jpg" alt="" id="BLOGGER_PHOTO_ID_5168166975664341490" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://mdes.designcrossover.net/ck&amp;amp;paul/Final3.mov"&gt;http://mdes.designcrossover.net/ck&amp;amp;paul/Final3.mov&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;Model presentation-eye level&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://mdes.designcrossover.net/ck&amp;amp;paul/Final2.mov"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R7kEe3RgwgI/AAAAAAAAAOU/QmElMMdlJ7s/s400/Final2-poster.jpg" alt="" id="BLOGGER_PHOTO_ID_5168166975664341506" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://mdes.designcrossover.net/ck&amp;amp;paul/Final2.mov"&gt;http://mdes.designcrossover.net/ck&amp;amp;paul/Final2.mov&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Model presentation-top view&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R7VbrXRgwSI/AAAAAAAAAMk/xtdAcTuf61g/s1600-h/IMG_6121.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R7VbrXRgwSI/AAAAAAAAAMk/xtdAcTuf61g/s400/IMG_6121.JPG" alt="" id="BLOGGER_PHOTO_ID_5167136948017479970" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R7VbrnRgwTI/AAAAAAAAAMs/UF7XW19Y4S8/s1600-h/Location1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R7VbrnRgwTI/AAAAAAAAAMs/UF7XW19Y4S8/s400/Location1.JPG" alt="" id="BLOGGER_PHOTO_ID_5167136952312447282" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R7VbrnRgwUI/AAAAAAAAAM0/NiPsOqWtU7I/s1600-h/P1030381.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R7VbrnRgwUI/AAAAAAAAAM0/NiPsOqWtU7I/s400/P1030381.JPG" alt="" id="BLOGGER_PHOTO_ID_5167136952312447298" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R7Vbr3RgwVI/AAAAAAAAAM8/U-FWkypTJ48/s1600-h/P1030383.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R7Vbr3RgwVI/AAAAAAAAAM8/U-FWkypTJ48/s400/P1030383.JPG" alt="" id="BLOGGER_PHOTO_ID_5167136956607414610" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R7VbsHRgwWI/AAAAAAAAANE/QHL9uNvz1Zk/s1600-h/P1030385.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R7VbsHRgwWI/AAAAAAAAANE/QHL9uNvz1Zk/s400/P1030385.JPG" alt="" id="BLOGGER_PHOTO_ID_5167136960902381922" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R7VbaXRgwOI/AAAAAAAAAME/7unbc7pN1bA/s1600-h/P1030388.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R7VbaXRgwOI/AAAAAAAAAME/7unbc7pN1bA/s400/P1030388.JPG" alt="" id="BLOGGER_PHOTO_ID_5167136655959703778" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R7VbanRgwPI/AAAAAAAAAMM/IilahlxOlmg/s1600-h/P1030390.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R7VbanRgwPI/AAAAAAAAAMM/IilahlxOlmg/s400/P1030390.JPG" alt="" id="BLOGGER_PHOTO_ID_5167136660254671090" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R7VbanRgwQI/AAAAAAAAAMU/v1DoX8nd4p0/s1600-h/P1030393.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R7VbanRgwQI/AAAAAAAAAMU/v1DoX8nd4p0/s400/P1030393.JPG" alt="" id="BLOGGER_PHOTO_ID_5167136660254671106" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R7Vba3RgwRI/AAAAAAAAAMc/cAsdyooKOxc/s1600-h/P1030403.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R7Vba3RgwRI/AAAAAAAAAMc/cAsdyooKOxc/s400/P1030403.JPG" alt="" id="BLOGGER_PHOTO_ID_5167136664549638418" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-7279244130429292404?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/7279244130429292404/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=7279244130429292404' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/7279244130429292404'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/7279244130429292404'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/02/blog-post_15.html' title='Final presentation'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_ZkAhhRXRDr4/R7kEe3RgwfI/AAAAAAAAAOM/EJduBqcfPxs/s72-c/Final3-poster.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-8484227464179531547</id><published>2008-02-15T01:21:00.000-08:00</published><updated>2008-02-17T20:56:41.849-08:00</updated><title type='text'>Application presentation</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R7kP-3RgwhI/AAAAAAAAAOc/ItuMIMUt0n4/s1600-h/v1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R7kP-3RgwhI/AAAAAAAAAOc/ItuMIMUt0n4/s400/v1.jpg" alt="" id="BLOGGER_PHOTO_ID_5168179620048060946" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R7kP_HRgwiI/AAAAAAAAAOk/IgoBUbFrFb4/s1600-h/v2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R7kP_HRgwiI/AAAAAAAAAOk/IgoBUbFrFb4/s400/v2.jpg" alt="" id="BLOGGER_PHOTO_ID_5168179624343028258" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://mdes.designcrossover.net/ck&amp;amp;paul/Comp%203.mov"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R7VaCHRgwII/AAAAAAAAALU/RQLAT3_ZMf4/s400/a1.jpg" alt="" id="BLOGGER_PHOTO_ID_5167135139836248194" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://mdes.designcrossover.net/ck&amp;amp;paul/Comp%203.mov"&gt;&lt;span&gt;&lt;span style="font-size:85%;"&gt;http://mdes.designcrossover.net/ck&amp;amp;paul/Comp 3.mov&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-8484227464179531547?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/8484227464179531547/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=8484227464179531547' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/8484227464179531547'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/8484227464179531547'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/02/httpmdes_15.html' title='Application presentation'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_ZkAhhRXRDr4/R7kP-3RgwhI/AAAAAAAAAOc/ItuMIMUt0n4/s72-c/v1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-4273075014782204207</id><published>2008-02-05T07:21:00.001-08:00</published><updated>2008-02-05T07:24:12.774-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R6h_PuZ0zEI/AAAAAAAAALE/AXKxH8NtDCA/s1600-h/P1030336.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R6h_PuZ0zEI/AAAAAAAAALE/AXKxH8NtDCA/s400/P1030336.JPG" alt="" id="BLOGGER_PHOTO_ID_5163516880911387714" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R6h_H-Z0y_I/AAAAAAAAAKc/Re3aECOp5e8/s1600-h/P1030331.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R6h_H-Z0y_I/AAAAAAAAAKc/Re3aECOp5e8/s400/P1030331.JPG" alt="" id="BLOGGER_PHOTO_ID_5163516747767401458" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R6h_IOZ0zAI/AAAAAAAAAKk/hYtM-2zWBag/s1600-h/P1030332.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R6h_IOZ0zAI/AAAAAAAAAKk/hYtM-2zWBag/s400/P1030332.JPG" alt="" id="BLOGGER_PHOTO_ID_5163516752062368770" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R6h_IOZ0zBI/AAAAAAAAAKs/8nO190RSi0Q/s1600-h/P1030333.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R6h_IOZ0zBI/AAAAAAAAAKs/8nO190RSi0Q/s400/P1030333.JPG" alt="" id="BLOGGER_PHOTO_ID_5163516752062368786" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R6h_IeZ0zCI/AAAAAAAAAK0/abrQlTol278/s1600-h/P1030334.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R6h_IeZ0zCI/AAAAAAAAAK0/abrQlTol278/s400/P1030334.JPG" alt="" id="BLOGGER_PHOTO_ID_5163516756357336098" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R6h_IuZ0zDI/AAAAAAAAAK8/kSxpnGcrH8E/s1600-h/P1030335.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R6h_IuZ0zDI/AAAAAAAAAK8/kSxpnGcrH8E/s400/P1030335.JPG" alt="" id="BLOGGER_PHOTO_ID_5163516760652303410" border="0" /&gt;&lt;/a&gt;&lt;a href="http://mdes.designcrossover.net/ck&amp;amp;paul/testing5.mov"&gt;&lt;span style="font-size:85%;"&gt;http://mdes.designcrossover.net/ck&amp;amp;paul/testing5.mov&lt;/span&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-4273075014782204207?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/4273075014782204207/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=4273075014782204207' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/4273075014782204207'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/4273075014782204207'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/02/httpmdes.html' title=''/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_ZkAhhRXRDr4/R6h_PuZ0zEI/AAAAAAAAALE/AXKxH8NtDCA/s72-c/P1030336.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-4314830995210578035</id><published>2008-02-05T01:33:00.001-08:00</published><updated>2008-02-05T01:34:41.542-08:00</updated><title type='text'>sitting bench development 3</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R6gtgOZ0y-I/AAAAAAAAAKU/9HN9n9M8BYI/s1600-h/chair_2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R6gtgOZ0y-I/AAAAAAAAAKU/9HN9n9M8BYI/s400/chair_2.jpg" alt="" id="BLOGGER_PHOTO_ID_5163427004425751522" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-4314830995210578035?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/4314830995210578035/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=4314830995210578035' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/4314830995210578035'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/4314830995210578035'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/02/sitting-bench-development-3.html' title='sitting bench development 3'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_ZkAhhRXRDr4/R6gtgOZ0y-I/AAAAAAAAAKU/9HN9n9M8BYI/s72-c/chair_2.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-2728949588477425986</id><published>2008-02-04T01:39:00.000-08:00</published><updated>2008-02-04T22:41:40.539-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R6bjM-Z0y9I/AAAAAAAAAKM/n05425qpRgw/s1600-h/rainy+roof.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 385px; height: 513px;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R6bjM-Z0y9I/AAAAAAAAAKM/n05425qpRgw/s400/rainy+roof.jpg" alt="" id="BLOGGER_PHOTO_ID_5163063834876103634" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;modified canopy to avoid the raining problem&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-2728949588477425986?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/2728949588477425986/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=2728949588477425986' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/2728949588477425986'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/2728949588477425986'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/02/blog-post_04.html' title=''/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_ZkAhhRXRDr4/R6bjM-Z0y9I/AAAAAAAAAKM/n05425qpRgw/s72-c/rainy+roof.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-8220490847333792420</id><published>2008-02-03T20:51:00.001-08:00</published><updated>2008-02-04T23:14:07.985-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R6aZ5uZ0y8I/AAAAAAAAAKE/C7kBMu2Zh38/s1600-h/chair_1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R6aZ5uZ0y8I/AAAAAAAAAKE/C7kBMu2Zh38/s400/chair_1.jpg" alt="" id="BLOGGER_PHOTO_ID_5162983239814794178" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;developed sitting bench&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-8220490847333792420?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/8220490847333792420/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=8220490847333792420' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/8220490847333792420'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/8220490847333792420'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/02/blog-post.html' title=''/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_ZkAhhRXRDr4/R6aZ5uZ0y8I/AAAAAAAAAKE/C7kBMu2Zh38/s72-c/chair_1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-5841685354286572667</id><published>2008-02-03T18:31:00.000-08:00</published><updated>2008-02-03T18:34:43.921-08:00</updated><title type='text'>testing 3</title><content type='html'>&lt;div style="text-align: center;"&gt;Status 3 (open)&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R6Z5euZ0y5I/AAAAAAAAAJs/BXVpzY0ewSM/s1600-h/Status3a.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R6Z5euZ0y5I/AAAAAAAAAJs/BXVpzY0ewSM/s400/Status3a.JPG" alt="" id="BLOGGER_PHOTO_ID_5162947591586237330" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R6Z5e-Z0y6I/AAAAAAAAAJ0/iEcUwl1Lqpk/s1600-h/Status3b.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R6Z5e-Z0y6I/AAAAAAAAAJ0/iEcUwl1Lqpk/s400/Status3b.JPG" alt="" id="BLOGGER_PHOTO_ID_5162947595881204642" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R6Z5fOZ0y7I/AAAAAAAAAJ8/zPitJT1TWJo/s1600-h/Status3cJPG.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R6Z5fOZ0y7I/AAAAAAAAAJ8/zPitJT1TWJo/s400/Status3cJPG.JPG" alt="" id="BLOGGER_PHOTO_ID_5162947600176171954" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R6Z5SuZ0y1I/AAAAAAAAAJM/O7pq9tL1F-c/s1600-h/Status1a.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R6Z5SuZ0y1I/AAAAAAAAAJM/O7pq9tL1F-c/s400/Status1a.JPG" alt="" id="BLOGGER_PHOTO_ID_5162947385427807058" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;Status 1 (close)&lt;br /&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R6Z5S-Z0y2I/AAAAAAAAAJU/51zPmV1em2Y/s1600-h/Status1b.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R6Z5S-Z0y2I/AAAAAAAAAJU/51zPmV1em2Y/s400/Status1b.JPG" alt="" id="BLOGGER_PHOTO_ID_5162947389722774370" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R6Z5S-Z0y3I/AAAAAAAAAJc/zuA4jjZ9-1I/s1600-h/Status1c.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R6Z5S-Z0y3I/AAAAAAAAAJc/zuA4jjZ9-1I/s400/Status1c.JPG" alt="" id="BLOGGER_PHOTO_ID_5162947389722774386" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R6Z5TOZ0y4I/AAAAAAAAAJk/R8hhsr7EbM4/s1600-h/Status2.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R6Z5TOZ0y4I/AAAAAAAAAJk/R8hhsr7EbM4/s400/Status2.JPG" alt="" id="BLOGGER_PHOTO_ID_5162947394017741698" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-5841685354286572667?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/5841685354286572667/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=5841685354286572667' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/5841685354286572667'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/5841685354286572667'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/02/testing-3.html' title='testing 3'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_ZkAhhRXRDr4/R6Z5euZ0y5I/AAAAAAAAAJs/BXVpzY0ewSM/s72-c/Status3a.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-5026649097358602653</id><published>2008-01-31T19:51:00.001-08:00</published><updated>2008-01-31T19:55:22.159-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R6KYHOZ0yyI/AAAAAAAAAI0/U2LtZa1XejU/s1600-h/P1030292.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R6KYHOZ0yyI/AAAAAAAAAI0/U2LtZa1XejU/s400/P1030292.JPG" alt="" id="BLOGGER_PHOTO_ID_5161855372812929826" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R6KYHOZ0yzI/AAAAAAAAAI8/jDGA8UmS4Zw/s1600-h/P1030293.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R6KYHOZ0yzI/AAAAAAAAAI8/jDGA8UmS4Zw/s400/P1030293.JPG" alt="" id="BLOGGER_PHOTO_ID_5161855372812929842" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R6KYHeZ0y0I/AAAAAAAAAJE/thqdJhyEMRc/s1600-h/P1030294.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R6KYHeZ0y0I/AAAAAAAAAJE/thqdJhyEMRc/s400/P1030294.JPG" alt="" id="BLOGGER_PHOTO_ID_5161855377107897154" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-5026649097358602653?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/5026649097358602653/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=5026649097358602653' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/5026649097358602653'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/5026649097358602653'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/blog-post_31.html' title=''/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_ZkAhhRXRDr4/R6KYHOZ0yyI/AAAAAAAAAI0/U2LtZa1XejU/s72-c/P1030292.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-7685290776813469064</id><published>2008-01-30T09:03:00.001-08:00</published><updated>2008-01-30T09:07:46.714-08:00</updated><title type='text'></title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R6CuBOZ0yuI/AAAAAAAAAH0/8dH3hYn0Hf0/s1600-h/testing4-poster.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R6CuBOZ0yuI/AAAAAAAAAH0/8dH3hYn0Hf0/s400/testing4-poster.jpg" alt="" id="BLOGGER_PHOTO_ID_5161316509036104418" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://mdes.designcrossover.net/ck&amp;amp;paul/testing4.mov"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family: arial;"&gt;http://mdes.designcrossover.net/ck&amp;amp;paul/testing4.mov&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-7685290776813469064?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/7685290776813469064/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=7685290776813469064' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/7685290776813469064'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/7685290776813469064'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/httpmdes.html' title=''/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_ZkAhhRXRDr4/R6CuBOZ0yuI/AAAAAAAAAH0/8dH3hYn0Hf0/s72-c/testing4-poster.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-236739966176274248</id><published>2008-01-29T06:23:00.001-08:00</published><updated>2008-01-29T06:23:56.440-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R5827uZ0ytI/AAAAAAAAAHs/f9jtEt3TPmE/s1600-h/design_3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R5827uZ0ytI/AAAAAAAAAHs/f9jtEt3TPmE/s400/design_3.jpg" alt="" id="BLOGGER_PHOTO_ID_5160904097686407890" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-236739966176274248?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/236739966176274248/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=236739966176274248' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/236739966176274248'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/236739966176274248'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/blog-post_8435.html' title=''/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_ZkAhhRXRDr4/R5827uZ0ytI/AAAAAAAAAHs/f9jtEt3TPmE/s72-c/design_3.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-474724849959795614</id><published>2008-01-29T06:17:00.001-08:00</published><updated>2008-01-29T06:27:31.535-08:00</updated><title type='text'>Final model</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;br /&gt;Eye level-status 1&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R581weZ0ynI/AAAAAAAAAG8/mhDU7ZMctGo/s1600-h/status1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R581weZ0ynI/AAAAAAAAAG8/mhDU7ZMctGo/s400/status1.JPG" alt="" id="BLOGGER_PHOTO_ID_5160902804901251698" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Eye level-status 2&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R581xOZ0yoI/AAAAAAAAAHE/qy9UWEazd8c/s1600-h/status2.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R581xOZ0yoI/AAAAAAAAAHE/qy9UWEazd8c/s400/status2.JPG" alt="" id="BLOGGER_PHOTO_ID_5160902817786153602" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Eye level-status 3&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R581xuZ0ypI/AAAAAAAAAHM/tpWkEfDw8sA/s1600-h/status3.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R581xuZ0ypI/AAAAAAAAAHM/tpWkEfDw8sA/s400/status3.JPG" alt="" id="BLOGGER_PHOTO_ID_5160902826376088210" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Top-status 1&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R581yOZ0yqI/AAAAAAAAAHU/7yFavHdDfuw/s1600-h/top_status1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R581yOZ0yqI/AAAAAAAAAHU/7yFavHdDfuw/s400/top_status1.JPG" alt="" id="BLOGGER_PHOTO_ID_5160902834966022818" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Top-status 2&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R581yeZ0yrI/AAAAAAAAAHc/q0fAado1_Bc/s1600-h/top_status2.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R581yeZ0yrI/AAAAAAAAAHc/q0fAado1_Bc/s400/top_status2.JPG" alt="" id="BLOGGER_PHOTO_ID_5160902839260990130" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Top-status 3&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R5817OZ0ysI/AAAAAAAAAHk/PVy1bVlmy-w/s1600-h/top_status3.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R5817OZ0ysI/AAAAAAAAAHk/PVy1bVlmy-w/s400/top_status3.JPG" alt="" id="BLOGGER_PHOTO_ID_5160902989584845506" border="0" /&gt;&lt;/a&gt;&lt;a href="http://mdes.designcrossover.net/ck&amp;amp;paul/testing3.mov"&gt;&lt;span style=";font-family:arial;font-size:85%;"  &gt;http://mdes.designcrossover.net/ck&amp;amp;paul/testing3.mov&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-474724849959795614?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/474724849959795614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=474724849959795614' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/474724849959795614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/474724849959795614'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/final-model.html' title='Final model'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_ZkAhhRXRDr4/R581weZ0ynI/AAAAAAAAAG8/mhDU7ZMctGo/s72-c/status1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-1329263493106644379</id><published>2008-01-29T06:00:00.000-08:00</published><updated>2008-01-29T06:02:07.586-08:00</updated><title type='text'>seat_development_1</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R58xq-Z0ymI/AAAAAAAAAG0/JAZCPqUOOwA/s1600-h/test.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R58xq-Z0ymI/AAAAAAAAAG0/JAZCPqUOOwA/s400/test.jpg" alt="" id="BLOGGER_PHOTO_ID_5160898312365460066" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-1329263493106644379?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/1329263493106644379/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=1329263493106644379' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/1329263493106644379'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/1329263493106644379'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/seatdevelopment1.html' title='seat_development_1'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_ZkAhhRXRDr4/R58xq-Z0ymI/AAAAAAAAAG0/JAZCPqUOOwA/s72-c/test.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-2405772743935647927</id><published>2008-01-29T02:42:00.000-08:00</published><updated>2008-01-29T02:53:26.235-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='http://www.blogger.com/img/gl.link.gif'/><title type='text'></title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;object width="320" height="266" class="BLOG_video_class" id="BLOG_video-4804670b42dd6957" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"&gt;&lt;param name="movie" value="http://www.youtube.com/get_player"&gt;&lt;param name="bgcolor" value="#FFFFFF"&gt;&lt;param name="allowfullscreen" value="true"&gt;&lt;param name="flashvars" value="flvurl=http://v5.nonxt1.googlevideo.com/videoplayback?id%3D4804670b42dd6957%26itag%3D5%26app%3Dblogger%26ip%3D0.0.0.0%26ipbits%3D0%26expire%3D1329872378%26sparams%3Did,itag,ip,ipbits,expire%26signature%3D5F9DB004420F7C2FF569E002085692F276B953E9.6F18AB86361EA36F1ED33D3147BCFE1A1825878D%26key%3Dck1&amp;amp;iurl=http://video.google.com/ThumbnailServer2?app%3Dblogger%26contentid%3D4804670b42dd6957%26offsetms%3D5000%26itag%3Dw160%26sigh%3DB6z0OAsLgFFEOFdsBoPyMKfbFjo&amp;amp;autoplay=0&amp;amp;ps=blogger"&gt;&lt;embed src="http://www.youtube.com/get_player" type="application/x-shockwave-flash"width="320" height="266" bgcolor="#FFFFFF"flashvars="flvurl=http://v5.nonxt1.googlevideo.com/videoplayback?id%3D4804670b42dd6957%26itag%3D5%26app%3Dblogger%26ip%3D0.0.0.0%26ipbits%3D0%26expire%3D1329872378%26sparams%3Did,itag,ip,ipbits,expire%26signature%3D5F9DB004420F7C2FF569E002085692F276B953E9.6F18AB86361EA36F1ED33D3147BCFE1A1825878D%26key%3Dck1&amp;iurl=http://video.google.com/ThumbnailServer2?app%3Dblogger%26contentid%3D4804670b42dd6957%26offsetms%3D5000%26itag%3Dw160%26sigh%3DB6z0OAsLgFFEOFdsBoPyMKfbFjo&amp;autoplay=0&amp;ps=blogger"allowFullScreen="true" /&gt;&lt;/object&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;a href="http://mdes.designcrossover.net/ck&amp;amp;paul/testing1.mov"&gt;&lt;span style="font-family: arial;"&gt;http://mdes.designcrossover.net/ck&amp;amp;paul/testing1.mov&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://mdes.designcrossover.net/ck&amp;amp;paul/testing2.mov"&gt;&lt;span style="font-family: arial;"&gt;http://mdes.designcrossover.net/ck&amp;amp;paul/testing2.mov&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-2405772743935647927?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='enclosure' type='video/mp4' href='http://www.blogger.com/video-play.mp4?contentId=4804670b42dd6957&amp;type=video%2Fmp4' length='0'/><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/2405772743935647927/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=2405772743935647927' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/2405772743935647927'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/2405772743935647927'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/blog-post_29.html' title=''/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-6274291192847049465</id><published>2008-01-27T20:12:00.001-08:00</published><updated>2008-01-27T20:15:24.559-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R51WQOZ0ykI/AAAAAAAAAGk/XLZTpt_am9I/s1600-h/new+layout.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R51WQOZ0ykI/AAAAAAAAAGk/XLZTpt_am9I/s400/new+layout.jpg" alt="" id="BLOGGER_PHOTO_ID_5160375584780765762" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;Yellow-footprint&lt;br /&gt;black point-movement of structure&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-6274291192847049465?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/6274291192847049465/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=6274291192847049465' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/6274291192847049465'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/6274291192847049465'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/yellow-footprint-black-point-movement.html' title=''/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_ZkAhhRXRDr4/R51WQOZ0ykI/AAAAAAAAAGk/XLZTpt_am9I/s72-c/new+layout.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-3915204367818269867</id><published>2008-01-23T22:08:00.001-08:00</published><updated>2008-01-23T22:11:27.309-08:00</updated><title type='text'>basic_structure_4</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R5grtuZ0yjI/AAAAAAAAAGc/7MTefe4UaVg/s1600-h/structure4.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 571px; height: 402px;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R5grtuZ0yjI/AAAAAAAAAGc/7MTefe4UaVg/s400/structure4.gif" alt="" id="BLOGGER_PHOTO_ID_5158921437703359026" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-3915204367818269867?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/3915204367818269867/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=3915204367818269867' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/3915204367818269867'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/3915204367818269867'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/basicstructure4.html' title='basic_structure_4'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_ZkAhhRXRDr4/R5grtuZ0yjI/AAAAAAAAAGc/7MTefe4UaVg/s72-c/structure4.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-8699823526884808682</id><published>2008-01-23T21:13:00.000-08:00</published><updated>2008-01-23T21:30:09.327-08:00</updated><title type='text'>basic_structure_3</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R5giTOZ0yiI/AAAAAAAAAGU/n6QrjK4FoPA/s1600-h/structure1.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 509px; height: 360px;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R5giTOZ0yiI/AAAAAAAAAGU/n6QrjK4FoPA/s400/structure1.gif" alt="" id="BLOGGER_PHOTO_ID_5158911086832175650" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-8699823526884808682?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/8699823526884808682/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=8699823526884808682' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/8699823526884808682'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/8699823526884808682'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/basicstructure3.html' title='basic_structure_3'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_ZkAhhRXRDr4/R5giTOZ0yiI/AAAAAAAAAGU/n6QrjK4FoPA/s72-c/structure1.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-1071790863951417848</id><published>2008-01-23T03:31:00.001-08:00</published><updated>2008-01-23T03:40:24.928-08:00</updated><title type='text'>motion_testing_1</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R5cmWOZ0ydI/AAAAAAAAAFs/xNzBa5V_fig/s1600-h/IMG_6124.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R5cmWOZ0ydI/AAAAAAAAAFs/xNzBa5V_fig/s400/IMG_6124.JPG" alt="" id="BLOGGER_PHOTO_ID_5158634061441583570" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R5cmWeZ0yeI/AAAAAAAAAF0/p32UXc0asdY/s1600-h/IMG_6125.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R5cmWeZ0yeI/AAAAAAAAAF0/p32UXc0asdY/s400/IMG_6125.JPG" alt="" id="BLOGGER_PHOTO_ID_5158634065736550882" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;object width="320" height="266" class="BLOG_video_class" id="BLOG_video-fcfa382d19cf3c" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"&gt;&lt;param name="movie" value="http://www.youtube.com/get_player"&gt;&lt;param name="bgcolor" value="#FFFFFF"&gt;&lt;param name="allowfullscreen" value="true"&gt;&lt;param name="flashvars" value="flvurl=http://v10.nonxt2.googlevideo.com/videoplayback?id%3D00fcfa382d19cf3c%26itag%3D5%26app%3Dblogger%26ip%3D0.0.0.0%26ipbits%3D0%26expire%3D1329872378%26sparams%3Did,itag,ip,ipbits,expire%26signature%3D2565673DC13F8DB5ADAB92C75DCA6A7FFDEBF51A.698FE906C8F903A02DFCE4A791FBF3A9DD2FE4FF%26key%3Dck1&amp;amp;iurl=http://video.google.com/ThumbnailServer2?app%3Dblogger%26contentid%3Dfcfa382d19cf3c%26offsetms%3D5000%26itag%3Dw160%26sigh%3DcwuL4XoOUNTAN08j_9y972wr83g&amp;amp;autoplay=0&amp;amp;ps=blogger"&gt;&lt;embed src="http://www.youtube.com/get_player" type="application/x-shockwave-flash"width="320" height="266" bgcolor="#FFFFFF"flashvars="flvurl=http://v10.nonxt2.googlevideo.com/videoplayback?id%3D00fcfa382d19cf3c%26itag%3D5%26app%3Dblogger%26ip%3D0.0.0.0%26ipbits%3D0%26expire%3D1329872378%26sparams%3Did,itag,ip,ipbits,expire%26signature%3D2565673DC13F8DB5ADAB92C75DCA6A7FFDEBF51A.698FE906C8F903A02DFCE4A791FBF3A9DD2FE4FF%26key%3Dck1&amp;iurl=http://video.google.com/ThumbnailServer2?app%3Dblogger%26contentid%3Dfcfa382d19cf3c%26offsetms%3D5000%26itag%3Dw160%26sigh%3DcwuL4XoOUNTAN08j_9y972wr83g&amp;autoplay=0&amp;ps=blogger"allowFullScreen="true" /&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-1071790863951417848?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='enclosure' type='video/mp4' href='http://www.blogger.com/video-play.mp4?contentId=fcfa382d19cf3c&amp;type=video%2Fmp4' length='0'/><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/1071790863951417848/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=1071790863951417848' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/1071790863951417848'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/1071790863951417848'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/motiontesting1.html' title='motion_testing_1'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_ZkAhhRXRDr4/R5cmWOZ0ydI/AAAAAAAAAFs/xNzBa5V_fig/s72-c/IMG_6124.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-322810803699292498</id><published>2008-01-22T17:55:00.000-08:00</published><updated>2008-01-22T19:48:12.696-08:00</updated><title type='text'>Process</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R5a4c-Z0yZI/AAAAAAAAAFM/-SWqgTvTmWI/s1600-h/site1.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R5a4c-Z0yZI/AAAAAAAAAFM/-SWqgTvTmWI/s400/site1.gif" alt="" id="BLOGGER_PHOTO_ID_5158513231126645138" border="0" /&gt;&lt;/a&gt;siteview_1&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R5a4dOZ0yaI/AAAAAAAAAFU/bAznSIjSH7M/s1600-h/site2.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R5a4dOZ0yaI/AAAAAAAAAFU/bAznSIjSH7M/s400/site2.gif" alt="" id="BLOGGER_PHOTO_ID_5158513235421612450" border="0" /&gt;&lt;/a&gt;siteview_2&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R5a4LeZ0yVI/AAAAAAAAAEs/mvFqKGTuYAk/s1600-h/status1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R5a4LeZ0yVI/AAAAAAAAAEs/mvFqKGTuYAk/s400/status1.JPG" alt="" id="BLOGGER_PHOTO_ID_5158512930478934354" border="0" /&gt;&lt;/a&gt;p1_state_1&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R5a4LuZ0yWI/AAAAAAAAAE0/184pTDKXkSc/s1600-h/status2.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R5a4LuZ0yWI/AAAAAAAAAE0/184pTDKXkSc/s400/status2.JPG" alt="" id="BLOGGER_PHOTO_ID_5158512934773901666" border="0" /&gt;&lt;/a&gt;p1_state_2&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R5a4L-Z0yXI/AAAAAAAAAE8/O0x76AvCfpg/s1600-h/status3.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R5a4L-Z0yXI/AAAAAAAAAE8/O0x76AvCfpg/s400/status3.JPG" alt="" id="BLOGGER_PHOTO_ID_5158512939068868978" border="0" /&gt;&lt;/a&gt;p1_state_3&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R5a4L-Z0yYI/AAAAAAAAAFE/-lOhvhImK2M/s1600-h/structure.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 546px; height: 379px;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R5a4L-Z0yYI/AAAAAAAAAFE/-lOhvhImK2M/s400/structure.gif" alt="" id="BLOGGER_PHOTO_ID_5158512939068868994" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-322810803699292498?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/322810803699292498/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=322810803699292498' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/322810803699292498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/322810803699292498'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/process.html' title='Process'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_ZkAhhRXRDr4/R5a4c-Z0yZI/AAAAAAAAAFM/-SWqgTvTmWI/s72-c/site1.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-7177007341012617420</id><published>2008-01-18T01:36:00.000-08:00</published><updated>2008-01-18T01:57:15.970-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R5B33-ZoxHI/AAAAAAAAACc/zKMhQB-HJ0g/s1600-h/P1030210.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R5B33-ZoxHI/AAAAAAAAACc/zKMhQB-HJ0g/s400/P1030210.JPG" alt="" id="BLOGGER_PHOTO_ID_5156753376866255986" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R5B3w-ZoxGI/AAAAAAAAACU/qjxvKobITUo/s1600-h/P1030209.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R5B3w-ZoxGI/AAAAAAAAACU/qjxvKobITUo/s400/P1030209.JPG" alt="" id="BLOGGER_PHOTO_ID_5156753256607171682" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R5B3e-ZoxFI/AAAAAAAAACM/BaZ6PQOZo5c/s1600-h/P1030208.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R5B3e-ZoxFI/AAAAAAAAACM/BaZ6PQOZo5c/s400/P1030208.JPG" alt="" id="BLOGGER_PHOTO_ID_5156752947369526354" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R5B3OOZoxEI/AAAAAAAAACE/319qBOsALus/s1600-h/P1030207.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R5B3OOZoxEI/AAAAAAAAACE/319qBOsALus/s400/P1030207.JPG" alt="" id="BLOGGER_PHOTO_ID_5156752659606717506" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R5BzkeZow-I/AAAAAAAAABU/0HiRB9WsLc8/s1600-h/Location.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R5BzkeZow-I/AAAAAAAAABU/0HiRB9WsLc8/s400/Location.png" alt="" id="BLOGGER_PHOTO_ID_5156748643812295650" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R5BzkeZow_I/AAAAAAAAABc/azTQG57FGg8/s1600-h/Location1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R5BzkeZow_I/AAAAAAAAABc/azTQG57FGg8/s400/Location1.jpg" alt="" id="BLOGGER_PHOTO_ID_5156748643812295666" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R5BzkeZoxAI/AAAAAAAAABk/GRFVcPwS7S0/s1600-h/Location2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R5BzkeZoxAI/AAAAAAAAABk/GRFVcPwS7S0/s400/Location2.jpg" alt="" id="BLOGGER_PHOTO_ID_5156748643812295682" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_ZkAhhRXRDr4/R5Bzk-ZoxBI/AAAAAAAAABs/mH-GcA9msfQ/s1600-h/a1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_ZkAhhRXRDr4/R5Bzk-ZoxBI/AAAAAAAAABs/mH-GcA9msfQ/s400/a1.jpg" alt="" id="BLOGGER_PHOTO_ID_5156748652402230290" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R5BzlOZoxCI/AAAAAAAAAB0/NVoNbupb-Fg/s1600-h/a2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R5BzlOZoxCI/AAAAAAAAAB0/NVoNbupb-Fg/s400/a2.jpg" alt="" id="BLOGGER_PHOTO_ID_5156748656697197602" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R5BzuOZoxDI/AAAAAAAAAB8/IiaSUVAnma8/s1600-h/a3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R5BzuOZoxDI/AAAAAAAAAB8/IiaSUVAnma8/s400/a3.jpg" alt="" id="BLOGGER_PHOTO_ID_5156748811316020274" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-7177007341012617420?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/7177007341012617420/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=7177007341012617420' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/7177007341012617420'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/7177007341012617420'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/blog-post_18.html' title=''/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_ZkAhhRXRDr4/R5B33-ZoxHI/AAAAAAAAACc/zKMhQB-HJ0g/s72-c/P1030210.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1757027273178752782.post-4659961888813911329</id><published>2008-01-16T00:04:00.000-08:00</published><updated>2008-01-17T20:34:35.482-08:00</updated><title type='text'>CK and Paul</title><content type='html'>&lt;div style="text-align: center;"&gt;Paul Project&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R427F-Zow7I/AAAAAAAAAA8/UvkJkmZyuOo/s1600-h/p1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R427F-Zow7I/AAAAAAAAAA8/UvkJkmZyuOo/s400/p1.JPG" alt="" id="BLOGGER_PHOTO_ID_5155982859733353394" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_ZkAhhRXRDr4/R427F-Zow8I/AAAAAAAAABE/TsV7JXzojXU/s1600-h/p2.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_ZkAhhRXRDr4/R427F-Zow8I/AAAAAAAAABE/TsV7JXzojXU/s400/p2.JPG" alt="" id="BLOGGER_PHOTO_ID_5155982859733353410" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ZkAhhRXRDr4/R427GOZow9I/AAAAAAAAABM/F3OgAM7H7DA/s1600-h/p3.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_ZkAhhRXRDr4/R427GOZow9I/AAAAAAAAABM/F3OgAM7H7DA/s400/p3.JPG" alt="" id="BLOGGER_PHOTO_ID_5155982864028320722" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;object width="320" height="266" class="BLOG_video_class" id="BLOG_video-ef2958e98e0e1c7" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"&gt;&lt;param name="movie" value="http://www.youtube.com/get_player"&gt;&lt;param name="bgcolor" value="#FFFFFF"&gt;&lt;param name="allowfullscreen" value="true"&gt;&lt;param name="flashvars" value="flvurl=http://v21.nonxt2.googlevideo.com/videoplayback?id%3D0ef2958e98e0e1c7%26itag%3D5%26app%3Dblogger%26ip%3D0.0.0.0%26ipbits%3D0%26expire%3D1329872378%26sparams%3Did,itag,ip,ipbits,expire%26signature%3D3CB0AB347944F375113E233CC587FFF45ED4ADA4.777D0437E32ECB605D6BCE0CFC38197077D3644F%26key%3Dck1&amp;amp;iurl=http://video.google.com/ThumbnailServer2?app%3Dblogger%26contentid%3Def2958e98e0e1c7%26offsetms%3D5000%26itag%3Dw160%26sigh%3DNPFXtjPrqLGDX4kugvWWdHnd5gQ&amp;amp;autoplay=0&amp;amp;ps=blogger"&gt;&lt;embed src="http://www.youtube.com/get_player" type="application/x-shockwave-flash"width="320" height="266" bgcolor="#FFFFFF"flashvars="flvurl=http://v21.nonxt2.googlevideo.com/videoplayback?id%3D0ef2958e98e0e1c7%26itag%3D5%26app%3Dblogger%26ip%3D0.0.0.0%26ipbits%3D0%26expire%3D1329872378%26sparams%3Did,itag,ip,ipbits,expire%26signature%3D3CB0AB347944F375113E233CC587FFF45ED4ADA4.777D0437E32ECB605D6BCE0CFC38197077D3644F%26key%3Dck1&amp;iurl=http://video.google.com/ThumbnailServer2?app%3Dblogger%26contentid%3Def2958e98e0e1c7%26offsetms%3D5000%26itag%3Dw160%26sigh%3DNPFXtjPrqLGDX4kugvWWdHnd5gQ&amp;autoplay=0&amp;ps=blogger"allowFullScreen="true" /&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;CK Project&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R426reZow4I/AAAAAAAAAAk/niNJmCi1sVI/s1600-h/ck1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R426reZow4I/AAAAAAAAAAk/niNJmCi1sVI/s400/ck1.JPG" alt="" id="BLOGGER_PHOTO_ID_5155982404466819970" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R426reZow5I/AAAAAAAAAAs/6hEWS5zUQWU/s1600-h/ck2.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R426reZow5I/AAAAAAAAAAs/6hEWS5zUQWU/s400/ck2.JPG" alt="" id="BLOGGER_PHOTO_ID_5155982404466819986" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_ZkAhhRXRDr4/R426reZow6I/AAAAAAAAAA0/yKJj1lKxFRk/s1600-h/ck3.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_ZkAhhRXRDr4/R426reZow6I/AAAAAAAAAA0/yKJj1lKxFRk/s400/ck3.JPG" alt="" id="BLOGGER_PHOTO_ID_5155982404466820002" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;object width="320" height="266" class="BLOG_video_class" id="BLOG_video-373c46e274b997c9" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"&gt;&lt;param name="movie" value="http://www.youtube.com/get_player"&gt;&lt;param name="bgcolor" value="#FFFFFF"&gt;&lt;param name="allowfullscreen" value="true"&gt;&lt;param name="flashvars" value="flvurl=http://v23.nonxt2.googlevideo.com/videoplayback?id%3D373c46e274b997c9%26itag%3D5%26app%3Dblogger%26ip%3D0.0.0.0%26ipbits%3D0%26expire%3D1329872378%26sparams%3Did,itag,ip,ipbits,expire%26signature%3D6C55933F87DB16515E39E0649EE27F299ED5E2DA.1974A2F599DCE5F7FA5A4889329D73D0D99BCD6C%26key%3Dck1&amp;amp;iurl=http://video.google.com/ThumbnailServer2?app%3Dblogger%26contentid%3D373c46e274b997c9%26offsetms%3D5000%26itag%3Dw160%26sigh%3DWPSFujuDul86oX6Uz4p9oIKzZKs&amp;amp;autoplay=0&amp;amp;ps=blogger"&gt;&lt;embed src="http://www.youtube.com/get_player" type="application/x-shockwave-flash"width="320" height="266" bgcolor="#FFFFFF"flashvars="flvurl=http://v23.nonxt2.googlevideo.com/videoplayback?id%3D373c46e274b997c9%26itag%3D5%26app%3Dblogger%26ip%3D0.0.0.0%26ipbits%3D0%26expire%3D1329872378%26sparams%3Did,itag,ip,ipbits,expire%26signature%3D6C55933F87DB16515E39E0649EE27F299ED5E2DA.1974A2F599DCE5F7FA5A4889329D73D0D99BCD6C%26key%3Dck1&amp;iurl=http://video.google.com/ThumbnailServer2?app%3Dblogger%26contentid%3D373c46e274b997c9%26offsetms%3D5000%26itag%3Dw160%26sigh%3DWPSFujuDul86oX6Uz4p9oIKzZKs&amp;autoplay=0&amp;ps=blogger"allowFullScreen="true" /&gt;&lt;/object&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1757027273178752782-4659961888813911329?l=eiw-ckpaul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='enclosure' type='video/mp4' href='http://www.blogger.com/video-play.mp4?contentId=373c46e274b997c9&amp;type=video%2Fmp4' length='0'/><link rel='enclosure' type='video/mp4' href='http://www.blogger.com/video-play.mp4?contentId=ef2958e98e0e1c7&amp;type=video%2Fmp4' length='0'/><link rel='replies' type='application/atom+xml' href='http://eiw-ckpaul.blogspot.com/feeds/4659961888813911329/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1757027273178752782&amp;postID=4659961888813911329' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/4659961888813911329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1757027273178752782/posts/default/4659961888813911329'/><link rel='alternate' type='text/html' href='http://eiw-ckpaul.blogspot.com/2008/01/ck-and-paul.html' title='CK and Paul'/><author><name>CK &amp;amp; Paul</name><uri>http://www.blogger.com/profile/03265348600363454435</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_ZkAhhRXRDr4/R427F-Zow7I/AAAAAAAAAA8/UvkJkmZyuOo/s72-c/p1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
