<?xml version="1.0" encoding="iso-8859-1"?>
<feed version="0.3"
xmlns="http://purl.org/atom/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<title mode="escaped">Kurt's Weblog</title>
<link rel="alternate" type="text/html" href="http://schwehr.org/blog"/>
<modified>2009-07-03T10:00:42-04:00</modified>
<author>
<name>Kurt</name>
<url>http://schwehr.org/blog</url>
</author>

<entry>
<title mode="escaped">iPhone 3GS - first images</title>
<author>
<name>Kurt</name>
</author>
<link rel="alternate" type="text/html" href="http://schwehr.org/blog/archives/2009-07.html#e2009-07-03T09_54_35.txt"/>
<id>http://schwehr.org/blog/archives/2009-07.html#e2009-07-03T09_54_35.txt</id>
<issued>2009-07-03T09:54:35-04:00</issued>
<modified>2009-07-03T09:54:35-04:00</modified>
<created>2009-07-03T09:54:35-04:00</created>

<content type="application/xhtml+xml" xml:lang="en" xml:space="preserve" mode="escaped">
<![CDATA[
Last night, I picked up an iPhone 3GS!  Pretty exciting.  I gave the
camera a try this morning and it did okay with the gray weather that
we are having in NH.  The image sync with iPhoto is super fast - my
old digital camera takes a minute or two as apposed to about 2 seconds
for the iPhone.  Here is a small piece of the image:
<br /><br />
<img title="iPhone 3GS cropped full res section" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-07/iphone-camera-full-res.jpg"/>
<br /><br />
I shrank the image down so you can see the whole thing:
<br /><br />
<img title="iPhone 3GS downsized whole image" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-07/iphone-camera-whole-img.jpg"/>
<br /><br />
It's worth a second to take a look at the EXIF headers:
<br /><br />
<pre>% <b>fink install jhead</b>
% <b>jhead IMG_0006.JPG</b>
File name    : /Users/schwehr/Desktop/IMG_0006.JPG
File size    : 1265684 bytes
File date    : 2009:07:03 09:36:45
Camera make  : Apple
Camera model : iPhone
Date/Time    : 2009:07:03 07:10:49
Resolution   : 2048 x 1536
Focal length :  3.8mm
Exposure time: 0.017 s  (1/60)
Aperture     : f/2.8
ISO equiv.   : 78
GPS Latitude : N 43d [snip]
GPS Longitude: W 70d [snip]
Comment      : {
Comment      :     AEAverage = 193;
Comment      :     AELimitsReached = 0;
Comment      :     AEStable = 1;
Comment      :     AFStable = 1;
Comment      :     AFStatus = 4;
Comment      :     AGC = 287;
Comment      :     AWBBGain = 194;
Comment      :     AWBGGain = 64;
Comment      :     AWBRGain = 137;
Comment      :     AWBStable = 1;
Comment      :     </pre>
If you say yes, the camera geocodes the images quite nicely.  The camera
model isn't very specific.
]]>
</content>

</entry>
<entry>
<title mode="escaped">Firefox geolocation confusion - now working</title>
<author>
<name>Kurt</name>
</author>
<link rel="alternate" type="text/html" href="http://schwehr.org/blog/archives/2009-07.html#e2009-07-03T09_30_49.txt"/>
<id>http://schwehr.org/blog/archives/2009-07.html#e2009-07-03T09_30_49.txt</id>
<issued>2009-07-03T09:30:49-04:00</issued>
<modified>2009-07-03T09:30:49-04:00</modified>
<created>2009-07-03T09:30:49-04:00</created>

<content type="application/xhtml+xml" xml:lang="en" xml:space="preserve" mode="escaped">
<![CDATA[
The "Give it a try!" link on <a
href="http://www.mozilla.com/en-US/firefox/geolocation/">the firefox
geolocation page</a> works, but following their code is difficult.
<br /><br />
<img title="Firefox 3.5 geolocation" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-07/geolocation-working.png"/>
<br /><br />
<a href="http://people.mozilla.com/~dolske/tmp/geoloc.html">This demo
(http://people.mozilla.com/~dolske/tmp/geoloc.html)</a> has easy to
follow code, but doesn't work.
<br /><br />
<img title="Firefox 3.5 geolocation" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-07/geolocation-broken.png"/>
<br /><br />
Where can I find a simple example that works?  <a href="http://labs.mozilla.com/2008/10/introducing-geode/">Introducing Geode</a> says that I can do:
<pre>navigator.geolocation.getCurrentPosition(function(pos) {
  alert( pos.latitude + ", " + pos.longitude );
})</pre>
But that doesn't seem to do it.  I get the share location request
beneath the navigation bar, but then I get null back for the
position... a little digging, and I found that the return structure
has changed since the initial design.  Here is a super simple working example.
Instead of pos.longitude, it uses pos.coords.longitude.
<br /><br />
<a href="http://schwehr.org/blog/attachments/2009-07/geolocation-alert.html">geolocation-alert.html</a>
<br /><br />
<pre><tt><b><font color="#0000FF">&lt;html</font></b> <font color="#009900">dir</font><font color="#990000">=</font><font color="#FF0000">"ltr"</font> <font color="#009900">xml:lang</font><font color="#990000">=</font><font color="#FF0000">"en-US"</font> <font color="#009900">xmlns</font><font color="#990000">=</font><font color="#FF0000">"http://www.w3.org/1999/xhtml"</font> <font color="#009900">lang</font><font color="#990000">=</font><font color="#FF0000">"en-US"</font><b><font color="#0000FF">&gt;&lt;head&gt;</font></b>
<b><font color="#0000FF">&lt;script</font></b> <font color="#009900">type</font><font color="#990000">=</font><font color="#FF0000">"text/javascript"</font><b><font color="#0000FF">&gt;</font></b>
navigator.geolocation.getCurrentPosition(function(pos) {
  alert( pos.coords.latitude + ", " + pos.coords.longitude );
})
<b><font color="#0000FF">&lt;/script&gt;</font></b></tt></pre>
Firefox could use an update to their page to point to this working demo: <a href="http://people.mozilla.com/~dolske/tmp/geoloc-new.html">geoloc-new.html</a>
]]>
</content>

</entry>
<entry>
<title mode="escaped">FireFox 3.5 location aware</title>
<author>
<name>Kurt</name>
</author>
<link rel="alternate" type="text/html" href="http://schwehr.org/blog/archives/2009-07.html#e2009-07-03T08_22_14.txt"/>
<id>http://schwehr.org/blog/archives/2009-07.html#e2009-07-03T08_22_14.txt</id>
<issued>2009-07-03T08:22:14-04:00</issued>
<modified>2009-07-03T08:22:14-04:00</modified>
<created>2009-07-03T08:22:14-04:00</created>

<content type="application/xhtml+xml" xml:lang="en" xml:space="preserve" mode="escaped">
<![CDATA[
Note: If you have Firefox 3.5, this is built in to the browser by
default: <a href="http://www.mozilla.com/en-US/firefox/geolocation/">Firefox Geolocation</a>.  Try this URL, which doesn't work for me: <a href="http://azarask.in/local/">Local food - http://azarask.in/local/</a>.  Now the real question is: How do I tell these services where wifi access points are located if it doesn't already know?  I'd like to add access points that I am frequently around that aren't in the Google Location Services.
<br /><br />
<a href="http://www.webmonkey.com/blog/Google_and_Mozilla_Team_Up_to_Tell_Firefox_Where_You_Are">Google and Mozilla Team Up to Tell Firefox Where You Are</a> [webmonkey]
<pre>Google and Mozilla have partnered to geo-enable the next wave of web
applications in Firefox, the companies announced Thursday. The latest
version of Firefox - 3.5 ... will use Google's Location Service as its
default location provider. ...
<!-- -->
Once the user provides a web app with permission to do so (the
geolocation abilities are opt-in, as they should be) the application
can use the browser to determine the user's location. This means
developers can provide more accurate local search results and other
geo-aware functionality ...
<!-- -->
...Mozilla launched the Geode project, a location
awareness add-on for Firefox, Yahoo brought us Fire Eagle and the
Geocoder API, Google gave us Latitude and Microsoft is developing
Vine. ...</pre>
And <a href="http://worrydream.com/MagicInk/#inferring_context_from_the_environment">Inferring context from the environment</a> [Magic Ink]
<pre><b>Geographical location.</b> Similarly, the most interesting spatial
landmark is usually "here." Unfortunately, this currently can be
harder to determine automatically, but the payoff is enormous.* Obviously, a
software roadmap needs to know the user's location, but so does the
bus schedule, as well as business listings, transportation planners,
travel guides, and much other information software.
<!-- -->
* I believe that location is such vital context, Powerbooks should
come with GPS receivers pre-installed, with an easy software
API. Developers would then write software to take advantage of it, and
other computer makers would follow suit. Someday, a computer without
GPS might seem as silly as a computer without a clock.</pre>
Just a reminder, GPS is first and formost a clock.  No time, no GPS
position.  One day soon, I hope to install the latest version of linux
or Mac OSX and discover that it is preconfigured to be a stratum 1 NTP
timeserver (and PTP) using the built in GPS chip with a fallback to
the a mobile phone service (e.g. CDMA) time source.  As a reminder,
this is how you check how ntp is doing:
<pre>% <b>ntpq -p -n</b>
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
-132.177.137.2   209.123.234.24   3 u  414 1024  377    4.680    4.171   0.221
-72.18.205.156   128.138.140.44   2 u  348 1024  377   79.530   -6.882   0.450
+69.10.36.5      64.90.182.55     2 u  479 1024  377   36.526   -3.959   0.540
-38.117.195.101  209.51.161.238   2 u  471 1024  377   12.920    7.163   0.164
*207.171.30.106  .PPS.            1 u  514 1024  377   79.463    3.569   2.720
+72.18.205.157   128.138.140.44   2 u 1611  68m  377   79.433   -6.352   1.356
 66.70.29.130    66.250.45.2      3 u  46h  68m    0   18.614   -3.436   0.000
-65.255.217.202  69.36.241.112    3 u 1654  68m  377   79.327   10.225   3.076
 127.127.1.0     .LOCL.          13 l   62   64  377    0.000    0.000   0.001</pre>
]]>
</content>

</entry>
<entry>
<title mode="escaped">Reson multibeam movies</title>
<author>
<name>Kurt</name>
</author>
<link rel="alternate" type="text/html" href="http://schwehr.org/blog/archives/2009-07.html#e2009-07-03T08_17_35.txt"/>
<id>http://schwehr.org/blog/archives/2009-07.html#e2009-07-03T08_17_35.txt</id>
<issued>2009-07-03T08:17:35-04:00</issued>
<modified>2009-07-03T08:17:35-04:00</modified>
<created>2009-07-03T08:17:35-04:00</created>

<content type="application/xhtml+xml" xml:lang="en" xml:space="preserve" mode="escaped">
<![CDATA[
Reson has put some of movies from their systems up on YouTube:
<br /><br />
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/FKVJ8IxXba4&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/FKVJ8IxXba4&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>
<br /><br />
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/vWaMn9XGzoU&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/vWaMn9XGzoU&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object>
]]>
</content>

</entry>
<entry>
<title mode="escaped">MATE ROV Competition</title>
<author>
<name>Kurt</name>
</author>
<link rel="alternate" type="text/html" href="http://schwehr.org/blog/archives/2009-07.html#e2009-07-03T08_09_10.txt"/>
<id>http://schwehr.org/blog/archives/2009-07.html#e2009-07-03T08_09_10.txt</id>
<issued>2009-07-03T08:09:10-04:00</issued>
<modified>2009-07-03T08:09:10-04:00</modified>
<created>2009-07-03T08:09:10-04:00</created>

<content type="application/xhtml+xml" xml:lang="en" xml:space="preserve" mode="escaped">
<![CDATA[
<a
href="http://sea-fever.org/2009/06/27/noaa-dyi-rov-aka-mini-submarine-in-a-bucket/">NOAA
DYI ROV (aka mini-submarine in a bucket)</a> [sea-fever].  Thanks to
Art, I have the guide book for this sitting on my shelf.
<br /><br />
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/TeFctnv5vVI&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/TeFctnv5vVI&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>
]]>
</content>

</entry>
<entry>
<title mode="escaped">Louisville Locks</title>
<author>
<name>Kurt</name>
</author>
<link rel="alternate" type="text/html" href="http://schwehr.org/blog/archives/2009-06.html#e2009-06-28T09_16_24.txt"/>
<id>http://schwehr.org/blog/archives/2009-06.html#e2009-06-28T09_16_24.txt</id>
<issued>2009-06-28T09:16:24-04:00</issued>
<modified>2009-06-28T09:16:24-04:00</modified>
<created>2009-06-28T09:16:24-04:00</created>

<content type="application/xhtml+xml" xml:lang="en" xml:space="preserve" mode="escaped">
<![CDATA[
The USCG and ACOE have a project in Louisville at the <a
href="http://en.wikipedia.org/wiki/McAlpine_Locks_and_Dam">McAlpine
Locks</a>.  I believe there is an <a
href="http://en.wikipedia.org/wiki/ADCP">Acoustic Doppler Currant
Profiler - ADCP</a> at the split coming into the locks.
<br /><br />
Here is a vessel approaching the area coming through the several
leading bridges:
<br /><br />
<img title="" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-06/louisville-lock-approach.jpg"/>
<br /><br />
A vessel that has made the approach and is entering the channel to the lock:
<br /><br />
<img title="Vessel entering channel" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-06/louisville-lock.jpg"/>
<br /><br />
<img title="Schematic view of the lock" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-06/louisville-lock-schematic.png"/>
<br /><br />
The ACOE has a airphoto of the lock in their <a href="http://outreach.lrh.usace.army.mil/Locks/McAlpine/mcalpine_fact_sheet.htm">McAlphone Locks and Dam fact sheet</a>
<br /><br />
<img title="lock air photo by the ACOE" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-06/louisville-lock-acoe-200804.jpg"/>
]]>
</content>

</entry>
<entry>
<title mode="escaped">Louisville</title>
<author>
<name>Kurt</name>
</author>
<link rel="alternate" type="text/html" href="http://schwehr.org/blog/archives/2009-06.html#e2009-06-28T08_52_13.txt"/>
<id>http://schwehr.org/blog/archives/2009-06.html#e2009-06-28T08_52_13.txt</id>
<issued>2009-06-28T08:52:13-04:00</issued>
<modified>2009-06-28T08:52:13-04:00</modified>
<created>2009-06-28T08:52:13-04:00</created>

<content type="application/xhtml+xml" xml:lang="en" xml:space="preserve" mode="escaped">
<![CDATA[
<img title="Clouds just after takeoff from BWI" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-06/clouds-1.jpg"/>
<br /><br />
<img title="Clouds just after takeoff from BWI" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-06/clouds-2.jpg"/>
<br /><br />
<img title="Bridges at night in Louisville" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-06/louisville-at-night.jpg"/>
<br /><br />
<img title="Sunrise in Louisville" withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-06/louisville-sunrise.jpg"/>
]]>
</content>

</entry>
<entry>
<title mode="escaped">How and why do you configure your AIS?</title>
<author>
<name>Kurt</name>
</author>
<link rel="alternate" type="text/html" href="http://schwehr.org/blog/archives/2009-06.html#e2009-06-27T09_09_15.txt"/>
<id>http://schwehr.org/blog/archives/2009-06.html#e2009-06-27T09_09_15.txt</id>
<issued>2009-06-27T09:09:15-04:00</issued>
<modified>2009-06-27T09:09:15-04:00</modified>
<created>2009-06-27T09:09:15-04:00</created>

<content type="application/xhtml+xml" xml:lang="en" xml:space="preserve" mode="escaped">
<![CDATA[
The initial comments that I got an LiveJournal are great.  To step up
the conversation some more, I started a thread over on gCaptain.  If
you want more, on this, take a look at the paper by Brian Calder and
myself: <a
href="http://vislab-ccom.unh.edu/~schwehr/papers/2009ushydro-calder_schwehr_AIS_Traffic_Analysis.pdf">Traffic
Analysis for the Calibration of Risk Assessment Methods, US Hydro
2009</a>
<br /><br />
cCaptain thread: <a href="http://gcaptain.com/forum/professional-mariner-forum/2002-configure-ais.html#post14552">How do you configure your AIS and why?</a>:
<br /><br />
I'm a researcher at the Center for Coastal and Ocean Mapping/NOAA
Joint Hydrographic Center in New Hampshire (research blog:
http://schwehr.org/blog). I've been working with AIS for a couple of
years now... ways to get information to mariners and ways to
understand how mariners move about. After looking at the settings
people put into their devices and configuring a bunch of units myself,
I've seen that there are a lot of different styles for what is
done. It would be a huge help to know what your strategy is for
setting the vessel type, draught, length, width, name, call sign, ship
and cargo type, ETA, and destination fields. Many vessels set it once
and leave it, while others change one or more of these all the
time. I've looked at a few books that are used for teaching and
haven't seen any guidance on best practices and the AIS standards
documents don't say much. Are you or someone above you setting some
quidelines for what you do?
<br /><br />
I got some great initial discussion: 
<br /><br />
<a href="http://goatbar.livejournal.com/2139.html">http://goatbar.livejournal.com/2139.html</a>
<br /><br />
A few of the things I see:
<ul>
<li>Parameters set at AIS install time</li>
<li>Parameters (sometimes partialy) changed when the vessel is sold</li>
<li>There are ships that change when the pilot gets on board and then go right back after the pilot leaves</li>
<li>Ships that look like they change with the watch stander changes</li>
<li>Changes when a vessel enters of leaves port</li>
<li>When there are power glitches (e.g. Nauticast devices that reset to factory defaults)</li>
<li>Tugs that become Tows and some that change their length to match what they are towing.</li>
<li>Tows that never change length or status even when not towing</li>
<li>Vessels where the length randomly changes (turned out to be a lighting strike on the ship)</li>
<li>etc...</li>
</ul>
Understanding why you do what you do with your AIS device would be
hugely helpful for those trying to use AIS to help understand what we
see. We are looking at AIS to try to help direct where (in the US -
NOAA) hydrographic offices will focus surveys and how to manage
waterways better.
<br /><br />
Here is an example of an interesting draught history for a vessel,
while others are static (frequently with a draught of 0):
<br /><br />
[picture of vessel draught that I posted a few days ago]
<br /><br />
It would be great if we could start working towards best practices for
the community!
]]>
</content>

</entry>
<entry>
<title mode="escaped">New antenna location at nhjel</title>
<author>
<name>Kurt</name>
</author>
<link rel="alternate" type="text/html" href="http://schwehr.org/blog/archives/2009-06.html#e2009-06-26T14_17_32.txt"/>
<id>http://schwehr.org/blog/archives/2009-06.html#e2009-06-26T14_17_32.txt</id>
<issued>2009-06-26T14:17:32-04:00</issued>
<modified>2009-06-26T14:17:32-04:00</modified>
<created>2009-06-26T14:17:32-04:00</created>

<content type="application/xhtml+xml" xml:lang="en" xml:space="preserve" mode="escaped">
<![CDATA[
Andy M. just got a chance to move the AIS J-Pole antenna at Jackson
Estuarine Lab (JEL) from inside to top floor room to outside.  The
improvement in reception is impressive.  The old site was too close to
computers, cables, and other radio gear.  Hopefully I'll get a chance
soon to plot the difference in reception.  The tough part about AIS is
that most of the things that you are hearing (at least in NH) are moving.
<br /><br />
<img title="nhjel J-Pole AIS Antenna.  Photo by Andy M." withgrayborder="True" src="http://schwehr.org/blog/attachments/2009-06/nhjel-ais-jpole.jpg"/>
]]>
</content>

</entry>
<entry>
<title mode="escaped">Phil Zimbardo TED talk</title>
<author>
<name>Kurt</name>
</author>
<link rel="alternate" type="text/html" href="http://schwehr.org/blog/archives/2009-06.html#e2009-06-26T14_06_55.txt"/>
<id>http://schwehr.org/blog/archives/2009-06.html#e2009-06-26T14_06_55.txt</id>
<issued>2009-06-26T14:06:55-04:00</issued>
<modified>2009-06-26T14:06:55-04:00</modified>
<created>2009-06-26T14:06:55-04:00</created>

<content type="application/xhtml+xml" xml:lang="en" xml:space="preserve" mode="escaped">
<![CDATA[
Seeing this guy speak in person is quite the experience!
<br /><br />
<object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param> <param name="flashvars" value="vu=http://video.ted.com/talks/embed/PhilZimbardo_2009U-embed_high.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/PhilZimbardo-2009U.embed_thumbnail.jpg&vw=432&vh=240&ap=0&ti=582" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/embed/PhilZimbardo_2009U-embed_high.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/PhilZimbardo-2009U.embed_thumbnail.jpg&vw=432&vh=240&ap=0&ti=582"></embed></object>
<br /><br />
and 2008:
<br /><br />
<object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param> <param name="flashvars" value="vu=http://video.ted.com/talks/embed/PhilZimbardo_2008-embed_high.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/PhilZimbardo-2008.embed_thumbnail.jpg&vw=432&vh=240&ap=0&ti=272" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/embed/PhilZimbardo_2008-embed_high.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/PhilZimbardo-2008.embed_thumbnail.jpg&vw=432&vh=240&ap=0&ti=272"></embed></object>
]]>
</content>

</entry>

</feed>
