<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
   <channel>
      <title>UrlBlogGrey</title>
      <link>http://urlgrey.net/</link>
      <description></description>
      <language>en</language>
      <copyright>Copyright 2008</copyright>
      <lastBuildDate>Sat, 07 Jun 2008 16:16:43 -0800</lastBuildDate>
      <generator>http://www.sixapart.com/movabletype/?v=3.31</generator>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs> 

            <item>
         <title>Audio Distortion with the Hauppauge PVR-150 and MythTV</title>
         <description><![CDATA[I've been using the Hauppauge (pronounced <i>hop-awg</i>) <a href="http://www.hauppauge.com/pages/products/data_pvr150.html">PVR-150</a> to record standard-quality television from our Comcast Digital Cable service.  So, far, the quality and performance of the card has been outstanding, especially when considering the cost of the card (~$75).  It comes with a hardware <a href="http://en.wikipedia.org/wiki/MPEG-2">MPEG-2</a> encoder that imposes hardly any load on the <a href="http://www.mythtv.org">MythTV</a> backend when recording because the compression and encoding of the video & audio is performed in hardware.  This leaves plenty of system resources for other tasks, such as playback or transcoding into other media formats.<p>

But there has been one problem that occurs intermittently: the audio on live & recorded programs will sound like it's being projected from a tin can.  The sound is discernible, but wrong.  Enduring an hour-long program with bad sound can be difficult.<p>

At first, I wasn't sure if the sound distortion was coming from the digital cable box, the PVR-150 encoder card, or MythTV playback.  We had never experienced this kind of audio distortion with our old Tivo service using the same digital cable box, so I had to rule out the cable box.  Also, we never had any problems when using the PVR-150 tuner input, which combines video & audio in a single input.  I had recently switched from the tuner input to the composite audio & video input on the PVR-150 due to the generally higher quality they deliver in comparison to coaxial feeds.  So, I concluded that problem was with the PVR-150 composite audio input.<p>

I'd noticed that leaving and then promptly returning to the channel would resolve the problem.  But this is not possible when recording programs while away.  After reading several posting on MythTV user lists, I decided to modify the channel-change script to fork a background that re-establishes the audio input 2 seconds after the channel-change script returns.  This has worked successfully for a week now, which is a marked improvement over where we were.<p>

The following shows the channel-change script:<p>

  <pre class="mtc_block"><span class="shell_string def_String"><span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairStart def_Special">[</span></span>scott@eowyn ~<span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairEnd def_Special">]</span></span></span><span class="shell_var def_Var">$</span> cat <span class="shell_path def_Path def_URI">/usr/local/bin/change_chan</span><span class="shell_command def_Keyword">.</span>sh 
<span class="def_Comment def_Syntax">#!/bin/sh</span>

<span class="def_Comment def_Syntax"># send infrared signals to change the current channel</span>
<span class="shell_var def_Var">REMOTE_NAME</span><span class="shell_symb def_Symbol">=</span>comcast
<span class="shell_command def_Keyword">for</span> digit <span class="shell_command def_Keyword">in</span> $<span class="def_PairStart def_Special"><span class="shell_symb_struct def_SymbolStrong def_Symbol">(</span></span><span class="shell_command_sys def_KeywordStrong def_Keyword">echo</span> <span class="shell_var def_Var">$1</span> <span class="shell_symb_inout def_Label">|</span> <span class="shell_command_sys def_KeywordStrong def_Keyword">sed</span> <span class="shell_op def_Operator def_Symbol">-e</span> <span class="shell_string def_String"><span class="def_PairStart def_Special">'</span><span class="shell_string def_String"><span class="shell_string def_String"><span class="def_PairStart def_Special"><span class="regexp_SpecArea def_Keyword">s</span><span class="def_StringEdge def_String">/</span></span><span class="regexp_MetaSymb def_Symbol">.</span><span class="def_StringEdge def_String">/</span></span>&amp; <span class="def_PairEnd def_Special"><span class="def_StringEdge def_String">/</span><span class="regexp_SpecArea def_Keyword">g</span></span></span><span class="def_PairEnd def_Special">'</span></span><span class="def_PairEnd def_Special"><span class="shell_symb_struct def_SymbolStrong def_Symbol">)</span></span><span class="shell_symb_struct def_SymbolStrong def_Symbol">;</span> <span class="def_PairStart def_Special"><span class="shell_command def_Keyword">do</span></span> 
  <span class="shell_path def_Path def_URI">/usr/local/bin/irsend</span> SEND_ONCE <span class="shell_var def_Var">$REMOTE_NAME</span> <span class="shell_var def_Var">$digit</span>
  sleep <span class="def_NumberDec def_Number">0</span><span class="shell_command def_Keyword">.</span><span class="def_NumberDec def_Number">4</span>
<span class="def_PairEnd def_Special"><span class="shell_command def_Keyword">done</span></span>
<span class="shell_path def_Path def_URI">/usr/local/bin/irsend</span> SEND_ONCE <span class="shell_var def_Var">$REMOTE_NAME</span> <span class="shell_string def_String"><span class="def_PairStart def_Special">&quot;</span>ok<span class="def_PairEnd def_Special">&quot;</span></span>

<span class="def_Comment def_Syntax"># start audio <span class="def_TODO def_Error">fix script in the background</span></span>
<span class="shell_path def_Path def_URI">/usr/local/bin/ivtv_audio_fix</span><span class="shell_command def_Keyword">.</span>sh <span class="shell_symb_struct def_SymbolStrong def_Symbol">&amp;</span></pre>
<p>

And the following shows the contents of the audio fix-it script that runs in the background after the channel-change process has finished.<p>

  <pre class="mtc_block"><span class="shell_string def_String"><span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairStart def_Special">[</span></span>scott@eowyn ~<span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairEnd def_Special">]</span></span></span><span class="shell_var def_Var">$</span> cat <span class="shell_path def_Path def_URI">/usr/local/bin/ivtv_audio_fix</span><span class="shell_command def_Keyword">.</span>sh 
<span class="def_Comment def_Syntax">#!/bin/sh</span>

sleep <span class="def_NumberDec def_Number">2</span>

<span class="def_Comment def_Syntax"># reset the audio input to source 1</span>
<span class="shell_path def_Path def_URI">/usr/local/bin/v4l2</span>-ctl --<span class="shell_command_sys def_KeywordStrong def_Keyword">set</span>-audio-input <span class="def_NumberDec def_Number">1</span></pre>
<p>

I'll also mention that I don't notice any glitches in the audio despite the fact that the fix-it script runs 2 seconds after the channel has been changed.
]]></description>
         <link>http://urlgrey.net/archives/2008/06/audio_distortio.php</link>
         <guid>http://urlgrey.net/archives/2008/06/audio_distortio.php</guid>
         <category>MythTV</category>
         <pubDate>Sat, 07 Jun 2008 16:16:43 -0800</pubDate>
      </item>
            <item>
         <title>OpenGL Vsync on MythTV</title>
         <description><![CDATA[<p>I had enabled Open Vsync on our <a href="http://www.mythtv.org/">MythTV</a> frontend during the initial configuration with the belief that there couldn't be any harm in adding an additional method of vertical synchronization.  I changed my mind when I began noticing strange delays in the video playback on my <a href="http://www.nvidia.com/page/fx_5200.html">NVidia FX 5200</a> with XVMC.  After changing channels, there would be about 3-5 glitches in video playback for 30 seconds, followed by okay playback.  I was okay with it until we began seeing much more dramatic choppiness in playback coupled with higher CPU utilization (typically 18-20%, but as high as 70%).</p>

<p>I searched the web for the symptoms and saw a lot of people reporting problems with video playback when OpenGL Vsync is enabled (<a href="http://readlist.com/lists/mythtv.org/mythtv-users/6/32272.html">here</a> and <a href="http://mythtv.org/pipermail/mythtv-dev/2007-June/055670.html">here</a>).  Since disabling OpenGL Vsync, I've not seen any delays in playback.  I might re-enable <strong>UseEvents</strong> in <em>/etc/X11/xorg.conf</em>, but it's currently set to <strong>False</strong>.</p>]]></description>
         <link>http://urlgrey.net/archives/2008/04/opengl_vsync_on.php</link>
         <guid>http://urlgrey.net/archives/2008/04/opengl_vsync_on.php</guid>
         <category>MythTV</category>
         <pubDate>Fri, 25 Apr 2008 09:53:26 -0800</pubDate>
      </item>
            <item>
         <title>Using XvMC with MythTV and an NVidia FX 5200</title>
         <description><![CDATA[Yesterday I wrote about my foray into <a href="http://urlgrey.net/archives/2008/03/using_opengl_wi.php">using the proprietary NVidia Linux display driver</a> on my <a href="http://www.mythtv.org/">MythTV</a> box to get better hardware acceleration.  This initially meant using OpenGL for rendering of the MyhTV menus.  The responsiveness of the menus was greatly improved; however, the <i>mythfrontend</i> process continued to use around 70% of the CPU.  This was surprising, especially considering that it's a Pentium 4 3.0 GHz CPU with HyperThreading.  I determined that playback of the recordings and live programming was <b>not </b> using the MPEG-2 acceleration present in the NVidia FX 5200 graphics card, which meant the MPEG-2 decoding was being performed entirely on the CPU.  This resulted in a higher system load and arguably lower-quality output.
<p>

I found the <a href="http://www.mythtv.org/wiki/index.php/XvMC#Nvidia">XvMC</a> section of the MythTV wiki describing how to use X-Video Motion Compensation (XvMC) to utilize hardware acceleration when decoding MPEG-2 video.  It actually took me several hours to get XvMC working, but I'll summarize the effective steps below:
<p>

First, install the NVidia display driver for Linux.  The x.org driver doesn't support XvMC, so there's no way around it.  My <a href="http://urlgrey.net/archives/2008/03/using_opengl_wi.php">previous post</a> has information on how to do this.
<p>

First, set-up the <i>/etc/X11/xorg.conf</i> file for the NVidia driver.  XvMC worked only when NVAGP was set to '1'.  You find explanations of these options on the <a href="http://http.download.nvidia.com/XFree86/Linux-x86/1.0-9629/README/appendix-d.html">NVidia support site</a>.  The relevant section of my <i>/etc/X11/xorg.conf</i> follows:<p>

<pre class="mtc_block"><span class="def_Syntax">Section</span> <span class="def_String">&quot;Device&quot;</span>
    <span class="def_Syntax">Identifier    </span> <span class="def_String">&quot;Videocard0&quot;</span>
    <span class="def_Syntax">Driver        </span> <span class="def_String">&quot;nvidia&quot;</span>
    <span class="def_Syntax">Option </span> <span class="def_String">&quot;NVAGP&quot;</span>                 <span class="def_String">&quot;1&quot;</span>
    <span class="def_Syntax">Option </span> <span class="def_String">&quot;NoLogo&quot;</span>                <span class="def_String">&quot;True&quot;</span>
    <span class="def_Syntax">Option </span> <span class="def_String">&quot;RenderAccel&quot;</span>           <span class="def_String">&quot;True&quot;</span>
    <span class="def_Syntax">Option </span> <span class="def_String">&quot;XvmcUsesTextures&quot;</span>      <span class="def_String">&quot;True&quot;</span>
    <span class="def_Syntax">Option </span> <span class="def_String">&quot;UseEdidDpi&quot;</span>            <span class="def_String">&quot;False&quot;</span>
    <span class="def_Syntax">Option </span> <span class="def_String">&quot;DPI&quot;</span>                   <span class="def_String">&quot;100 x 100&quot;</span>
    <span class="def_Syntax">Option </span> <span class="def_String">&quot;UseEvents&quot;</span>             <span class="def_String">&quot;False&quot;</span>
    <span class="def_Syntax">Option </span> <span class="def_String">&quot;DPMS&quot;</span>                  <span class="def_String">&quot;False&quot;</span>
EndSection</pre>
<p>

Next, create or edit the file <i>/etc/X11/XvMCConfig</i>.  Following are some shell commands that show my system setup:
<p>

<pre class="mtc_block"><span class="shell_string def_String"><span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairStart def_Special">[</span></span>scott@eowyn lib<span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairEnd def_Special">]</span></span></span><span class="shell_var def_Var">$</span> <span class="shell_command_sys def_KeywordStrong def_Keyword">cd</span> <span class="shell_path def_Path def_URI">/usr/lib</span>
<span class="shell_string def_String"><span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairStart def_Special">[</span></span>scott@eowyn lib<span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairEnd def_Special">]</span></span></span><span class="shell_var def_Var">$</span> ll libXvMCNVIDIA<span class="regexp_MetaSymb def_Symbol">*</span>
-r--r--r-- <span class="def_NumberDec def_Number">1</span> root root <span class="def_NumberDec def_Number">152808</span> <span class="def_NumberDec def_Number">2008</span>-<span class="def_NumberDec def_Number">03</span>-<span class="def_NumberDec def_Number">31</span> <span class="def_NumberDec def_Number">08</span><span class="shell_symb def_Symbol">:</span><span class="def_NumberDec def_Number">47</span> libXvMCNVIDIA<span class="shell_command def_Keyword">.</span>a
lrwxrwxrwx <span class="def_NumberDec def_Number">1</span> root root     <span class="def_NumberDec def_Number">23</span> <span class="def_NumberDec def_Number">2008</span>-<span class="def_NumberDec def_Number">03</span>-<span class="def_NumberDec def_Number">31</span> <span class="def_NumberDec def_Number">08</span><span class="shell_symb def_Symbol">:</span><span class="def_NumberDec def_Number">47</span> libXvMCNVIDIA_dynamic<span class="shell_command def_Keyword">.</span>so<span class="shell_command def_Keyword">.</span><span class="def_NumberDec def_Number">1</span> -<span class="shell_symb_inout def_Label">&gt;</span> libXvMCNVIDIA<span class="shell_command def_Keyword">.</span>so<span class="shell_command def_Keyword">.</span><span class="def_NumberDec def_Number">169</span><span class="shell_command def_Keyword">.</span><span class="def_NumberDec def_Number">12</span>
-rwxr-xr-x <span class="def_NumberDec def_Number">1</span> root root <span class="def_NumberDec def_Number">139604</span> <span class="def_NumberDec def_Number">2008</span>-<span class="def_NumberDec def_Number">03</span>-<span class="def_NumberDec def_Number">31</span> <span class="def_NumberDec def_Number">08</span><span class="shell_symb def_Symbol">:</span><span class="def_NumberDec def_Number">47</span> libXvMCNVIDIA<span class="shell_command def_Keyword">.</span>so<span class="shell_command def_Keyword">.</span><span class="def_NumberDec def_Number">169</span><span class="shell_command def_Keyword">.</span><span class="def_NumberDec def_Number">12</span>
<span class="shell_string def_String"><span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairStart def_Special">[</span></span>scott@eowyn lib<span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairEnd def_Special">]</span></span></span><span class="shell_var def_Var">$</span> cat <span class="shell_path def_Path def_URI">/etc/X11/XvMCConfig</span> 
libXvMCNVIDIA_dynamic<span class="shell_command def_Keyword">.</span>so<span class="shell_command def_Keyword">.</span><span class="def_NumberDec def_Number">1</span></pre>
<p>

To confirm that XvMC is working in X Windows, start up X Windows (i.e. startx), create a shell window and run <i>xdpyinfo</i> to look for the XvMC info:
<p>

<pre class="mtc_block"><span class="shell_string def_String"><span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairStart def_Special">[</span></span>scott@eowyn lib<span class="regexp_Quote regexp_MetaSymb def_Symbol"><span class="def_PairEnd def_Special">]</span></span></span><span class="shell_var def_Var">$</span> xdpyinfo <span class="shell_symb_inout def_Label">|</span> grep XVideo
     XVideo
     XVideo-MotionCompensation</pre>
<p>

The next step is to instruct mythfrontend to use XvMC for playback.  I did this by choosing a playback profile in the mythfrontend via the <i>Setup -> TV Settings -> Playback</i> menus.  The <i>CPU--</i> profile uses 'ivtv' for Standard Definition (SD) Television, and 'xvmc' for higher definition content.  I'm only recording SD content right now, but would like to use 'xvmc' to lower the CPU load.  So, I created a new playback profile that uses 'xvmc' for all content.
<p>

I'll also mention that the picture became skewed on my 16:9 Sony 32" flat-panel television.  I corrected this by adding scaling values of X=2, Y=3 in the <i>Setup -> TV Settings -> Playback</i> menu.  This shifted the picture left and down to fill the screen.  I'm also using the DVI output of the NVidia FX 5200 card.  I've got a DVI-to-HDMI cable that delivers a pure digital signal to the television.  The clarity is phenomenal.
<p>

After making all of these changes, I was able to confirm that XvMC was in use simply by looking at the CPU utilization of the 'mythfrontend' process with 'top'.  Before I enabled XvMC, CPU utilization was at 68-72% when playing video.  After switching to XvMC, utilization is merely 18-20%.  That's more than a 300% reduction in CPU utilization!  Since I use the MythTV machine for the backend and frontend, the reduction in CPU utilization opens up the possibility of adding another encoder card, or running some additional services such as ZoneMinder.
]]></description>
         <link>http://urlgrey.net/archives/2008/04/using_xvmc_with.php</link>
         <guid>http://urlgrey.net/archives/2008/04/using_xvmc_with.php</guid>
         <category>MythTV</category>
         <pubDate>Tue, 01 Apr 2008 11:16:04 -0800</pubDate>
      </item>
            <item>
         <title>Using OpenGL with MythTV</title>
         <description><![CDATA[<p>While fine-tuning our <a href="http://www.mythtv.org/">MythTV</a> system, I noticed that the default menu-renderer is <a href="http://trolltech.com/products/qt">QT</a>.  There's nothing wrong with QT, except that it doesn't offer hardware acceleration that <a href="http://www.opengl.org/">OpenGL</a> does.  So, using QT creates a higher system load on the MythTV frontend.  This takes away CPU cycles that could be better spent, and provides a UI that is less smooth.</p>

<p>So, I enabled OpenGL menu-rendering for MythTV (0.21) only to find the menu transition taking a horrendous amount of time.  There was an OpenGL fade that occurred on each screen transition that would take about 5 second to complete.  This is when I realized that I should have installed the vendor's X Windows driver.</p>

<p>My MythTV machine has an <a href="http://www.nvidia.com/page/fx_5200.html">NVidia GeForce FX 5200 graphics card</a> installed.  It's a few years old, but works perfectly for this purpose: fanless, hardware OpenGL rendering & MPEG-2 decoding, and DVI output.  I went to the NVidia support site and downloaded the display driver.  I then installed it and marveled at how much it improved everything.  The system load was greatly reduced because the OpenGL rendering occurred in hardware, menu navigation was very quick, and a lovely fade effect occurs upon each screen transition.</p>

<p>So, the lesson learned was to install the NVidia display drivers when choosing OpenGL menu rendering with MythTV.  OpenGL is a great improvement over QT, and having display drivers that can take advantage of hardware acceleration is a must.</p>]]></description>
         <link>http://urlgrey.net/archives/2008/03/using_opengl_wi.php</link>
         <guid>http://urlgrey.net/archives/2008/03/using_opengl_wi.php</guid>
         <category>MythTV</category>
         <pubDate>Mon, 31 Mar 2008 12:41:56 -0800</pubDate>
      </item>
            <item>
         <title>Planned Obsolescence of Tivo</title>
         <description><![CDATA[<p>Menu navigation on our Series 2 Tivo has been agonizingly slow for the last 3-6 months.  My expectations are based on the actual performance of the Tivo for the first 2.5 years.  But menu navigation has dragged since Tivo introduced - wait, imposed - advertising throughout the menus and in the deletion confirmation menu shown at the end of each recorded program.  Each click on a menu item results in a 30-60 second wait for the next screen to be displayed.  I think that navigating the Web on a 14.4 kbps modem would provide a better user experience than what our Tivo offers.</p>

<p>So, tonight I got around to calling Tivo Support to get some answers.  First, our Tivo is connected to our home network using a wired Ethernet adapter so there's no chance of signal interference being an issue.  Second, I've gone through the steps of forcing Tivo to reconnect to the service looking for an update, and have performed a power-cycle of the Tivo to make sure that memory leaks aren't at fault.  Unfortunately, none of these helped.  The support person who handled my call looked at all of these facts and said that the only thing I could do was "exchange" our Tivo appliance for another Series 2 model at a cost of $149.  We purchased our Tivo for $50.  How can Tivo justify the price of $149?  I declined the exchange and informed the support person that they had been no help whatsoever, and that paying Tivo over $150 per year for simple television guide data is ridiculous.</p>

<p>I now have additional motivation to get MythTV or another open-source PVR system working.  Tivo's business practices impose replacement of perfectly good hardware on their customers.  I am nearly certain that the lag in our Tivo has been caused by recent system software upgrades forced by the Tivo company.  Tivo has lost my support, and will soon lose me as a customer.</p>]]></description>
         <link>http://urlgrey.net/archives/2008/03/planned_obsoles.php</link>
         <guid>http://urlgrey.net/archives/2008/03/planned_obsoles.php</guid>
         <category>Tivo</category>
         <pubDate>Wed, 26 Mar 2008 19:34:26 -0800</pubDate>
      </item>
            <item>
         <title>Emergency Preparedness Supplies at Home</title>
         <description><![CDATA[I've been interested in disaster preparedness for the <a href="http://urlgrey.net/archives/2006/10/disaster_prepar.php">last couple of years</a>, and have taken steps to ensure that we're prepared for an emergency whether at home or on the road.  On a surface level, this means assembling supplies that will be useful in the event that communications, shelter, food, or water aren't available.  I've relied on the Internet a lot during the process of deciding what to include in my preparedness supplies.  I hope that people will find my own list useful, too.
<p>

I keep our supplies in 4 medium-sized plastic storage containers.  These are lightweight, durable, and water-resistant.  While I probably could have used 2 or 3 containers, I found that 4 containers allowed me ample space in each container and the ability to limit the container's contents (i.e. kitchen item, food, etc).  All of the containers are kept in our garage.  There's no perfect place to keep supplies - must be sheltered from the elements and protected from theft, but not be crushed in an earthquake or other structural failure.
<p>

The following is a list of articles and guides that I found useful in deciding what to include in my supplies:<br>
<ul>
<li><a href="http://www.ready.gov/">Ready.gov</a> from FEMA - <a href="http://www.ready.gov/america/_downloads/emergency_preparedness/are_you_ready.pdf">publication on household preparedness</a></li>
<li><a href="http://www.redcross.org">American Red Cross</a> - <a href="http://www.redcross.org/services/prepare/0,1082,0_77_,00.htm">Prepare at Home</a></a></li>
<li><a href="http://oep.berkeley.edu/emergencies/earthquakes/supplies.html">UC Berkeley Office of Emergency Preparedness</a> (earthquake-oriented)</li>
<li><a href="http://www.dailykos.com/story/2005/9/9/161748/9747">Daily Kos</a> (5-part series of articles)</li>
</ul>
<p>

Here's the list representing my actual supplies at home:
<p>
<script language="Javascript" type="text/javascript" src="/notebook/notebook.js"></script>
<style type="text/css">div.notebookcell{ position:relative; }</style>
<STYLE type="text/css">

	.pna0 {
		font-family : Helvetica,Arial,sans-serif;
		font-size : 20px;
		font-weight : bold;
		color : #000000;
	}


	.blankline {
		font-family : Helvetica,Arial,sans-serif;
		font-size : 14px;
		color : #000000;
		text-align : center;
	}


	.f0 {
		font-family : Helvetica,Arial,sans-serif;
		font-size : 14px;
		color : #000000;
	}


</STYLE>
<!-- PAGE CONTENT -->

 <table summary="layout frame" border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" >
  <tr>
    <td width="1">
<img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="1">
    </td>
    <td width="100%" valign="top">
      <table summary="notebook topmargin" border="0" cellspacing="0" cellpadding="0" width="100%" height="60">
        <tr>
          <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>
          <td width="1"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="1"></td>
          <td width="4" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="4" height="1"></td>
          <td width="100%" valign="top" align="right" nowrap ><img src="/notebook/images/_nbs.gif" alt="" border="0" width="5" height="1"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="23" height="33" usemap="#pagecurlltmap"><br>
          <img src="/notebook/images/_nbs.gif" alt="" border="0" width="540" height="1"></td>
        </tr>
      </table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="4"><br>
</td>
      
      
      <td width="4" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="4" height="1"></td>
      
      <td width="100%" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"><br>
<font class="pna0">Emergency Supplies at Home<br></font></td>
      
      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="4" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="4" height="1"></td>
      
      <td valign="top"><nobr></nobr></td>      <td width="100%" valign="top"></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="4" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="4" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Supplies<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<div id="notebookcell_0" class="notebookcell">
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Sleeping Bags (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Plastic bucket with lid<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">N95 respirator masks (20)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">First Aid Kit<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">First Aid Manual<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Heavy-load Rope (200+ pounds) (3/8&quot; x 100 feet) (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Light-load Rope (75 pounds) (1/8&quot; x 48 feet) (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Duffel Bag (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Lighting<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<div id="notebookcell_1" class="notebookcell">
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Battery-powered Lantern<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Heavy-Duty Mag Flashlight (D-Cells)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Small Flashlight (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">LED Headlamp<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Chemical Light-sticks (6) (4-year shelf-life)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Tea-light Candles (6)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">9-hour candles (4)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Candle lantern<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
</div>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Electricity<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<div id="notebookcell_2" class="notebookcell">
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">50' Power Extension Cord<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Power Strip with surge protector<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">400 watt AC inverter in car<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">AA Batteries (20)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">AAA Batteries (14)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">C Batteries (6)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">D Batteries (6)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
</div>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Communications<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<div id="notebookcell_3" class="notebookcell">
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Radio (battery-powered) (AM/FM/Weather/TV)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Corded Telephone<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Portable FRS/GMRS Radios (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Charger &amp; Rechargeable Batteries for FRS/GMRS Radios<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
</div>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Instant Hand Warmers (4)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Waterproof Matches (4 boxes)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Solar Emergency Blanket (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Protective goggles (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Rain Poncho (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Work Gloves (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Foam Ear Plugs (2 pair per set) (2 sets)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Hammer<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Crescent Wrench<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Pliers<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Plastic Trowel<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Pens (3)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Small notebook<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Electrical Tape<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Duct Tape<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Swiss Army Knife<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Padlocks with key (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Playing Cards<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Plastic tarp<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
</div>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="4" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="4" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Food<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<div id="notebookcell_4" class="notebookcell">
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">3 gallons of water per person (total of 6 gallons)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Canned Soup (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Freeze-dried Ice-cream (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">72-hour food supply (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Cat food<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<div id="notebookcell_5" class="notebookcell">
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Veterinarian suggested food (2 cans)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
</div>
</div>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="4" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="4" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Clothing (need more in this area)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<div id="notebookcell_6" class="notebookcell">
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Sweatshirts (3)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Baseball hat<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
</div>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="4" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="4" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Personal Hygiene <br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<div id="notebookcell_7" class="notebookcell">
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Toilet Paper (4 rolls)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Facial Tissue<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Moist wipes (50 count)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Tums Chewable Antacid<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Sunscreen SPF-15 (aerosol has longest shelf-life)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Insect repellent<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Antihistamine (Benadryl or similar)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Deodorant (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Disposable Razors (4)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Shaving cream<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Body soap<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Shampoo<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Toothbrushes (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Toothpaste<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
</div>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="4" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="4" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Cooking<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<div id="notebookcell_8" class="notebookcell">
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Propane camping stove<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Propane fuel canisters (3)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Paper plates (54)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Paper towels (2 rolls)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Aluminum foil (50 square feet)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Contractor-grade trash bags for clean-up and sanitation (15 minimum)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Manual Can Opener<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Plastic Cups (50)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Plastic Eating-Utensils (16 total)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Nalgene bottles (2)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Sierra cup (stainless-steel backpacking cup)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Katadyn Micropur MP1 water purification tablets (30)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Water purification filter<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
</div>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="4" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="4" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Information &amp; Resources<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<div id="notebookcell_9" class="notebookcell">
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Coins &amp; cash<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Printed Emergency Contacts<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">DVD containing encrypted financial records and home inventory<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="24" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="24" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Maps (local and state-wide, free from AAA)<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<div id="notebookcell_10" class="notebookcell">
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">San Francisco Bay<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">California<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Monterey Bay<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">Oakland-Berkeley<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="44" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="44" height="1"></td>
      
      <td valign="top"><nobr><img src="/notebook/images/_nbs.gif" alt="" border="0" width="16" height="13"><img height="11" width="11" border="0" src="/notebook/images/_nb_interface/checkboxUnchecked.gif" alt=""><img src="/notebook/images/_nbs.gif" alt="" border="0" width="3" height="1"></nobr></td>      <td width="100%" valign="top"><font class="f0">San Francisco<br></font></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
</div>
</div>
<table summary="notebook cell" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
      <td width="20" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="20" height="1"></td>

       <td width="4" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="4" height="1"></td>
      
      <td valign="top"><nobr></nobr></td>      <td width="100%" valign="top"></td>

      <td width="8" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="8" height="1"></td>
    </tr>
    <tr>
      <td colspan="5" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="1" height="4"></td>
    </tr>
</table>
      
    </td>
    
    <td width="7" valign="top"><img src="/notebook/images/_nbs.gif" alt="" border="0" width="7" height="33" usemap="#pagecurlrtmap"></td>  </tr>
  
</table>   

<!-- /PAGE CONTENT -->]]></description>
         <link>http://urlgrey.net/archives/2008/03/emergency_prepa.php</link>
         <guid>http://urlgrey.net/archives/2008/03/emergency_prepa.php</guid>
         <category>Emergency Preparedness</category>
         <pubDate>Sun, 16 Mar 2008 07:34:00 -0800</pubDate>
      </item>
            <item>
         <title>Backup of Financial Information</title>
         <description><![CDATA[<p>One of my interests is being prepared for natural and man-made emergencies that may occur in the San Francisco Bay Area.  I believe that preparedness should include one's personal finances.  Keeping records that are current and available can lead to a quicker recovery and smaller loss.</p>

<p>I have used the <a href="http://quicken.intuit.com/">Quicken</a> software program from Intuit since 2001 to manage my personal finances.  This includes tracking my investments, savings, and monthly bills.  Loss or unavailability of Quicken would count as a real emergency for me.  For this reason, I make quarterly backups of my Quicken information and keep them off-site</p>

<p>I've decided to use recordable DVDs for my data backups, with the reasons being:<br />
<ul><br />
<li>Highly accessible since most computers contains DVD-ROM drives</li><br />
<li>Cheap to produce, at less than $1 per disc (cheaper than magnetic disk drives)</li><br />
<li>Resistant to damage from water, magnetic signals, etc (not true for USB flash drives)</li><br />
<li>Tamper-proof since the information can't be modified</li><br />
<li>Can be encrypted to protect the contents</li><br />
<li>Can store up to 8 GB of data, which makes them preferable to CDs.</li><br />
</ul></p>

<p>A popular software program for recording DVDs on the Mac OS X platform is <a href="http://www.roxio.com/enu/products/toast/titanium/overview.html">Toast</a> from Roxio.  It provides support for encrypted disk images (supported natively in Mac OS X) and disk spanning.  I highly recommend it.</p>

<p>The information I include on my backups is:<br />
<ul><br />
<li><a href="http://www.vmware.com/products/fusion/">VMware Fusion</a> virtual machine of Windows 2003 Server with Quicken program & data</li><br />
<li>VMware Fusion installer & se