<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>Ask Westley!</title>
<link>http://www.askwestley.com/</link>
<description>Computer geek, and self-appointed know-it-all, Westley Annis answers all those hard questions about anything related to computers and technology, as well as business and politics.</description>
<language>en</language>
<copyright>Copyright 2009</copyright>
<lastBuildDate>Wed, 04 Feb 2009 08:55:52 -0600</lastBuildDate>
<generator>http://www.movabletype.org/?v=4.1</generator>
<docs>http://blogs.law.harvard.edu/tech/rss</docs> 


<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/AskWestley" type="application/rss+xml" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
<title>Have a Word Macro Detect Your Thumb Drive</title>
<description>&lt;p&gt;Although not directly a part of &lt;a href="http://msdn.microsoft.com/en-us/isv/bb190538.aspx"&gt;Visual Basic for Applications (VBA)&lt;/a&gt;, the macro language of the &lt;a href="http://office.microsoft.com/en-us/FX103525111033.aspx"&gt;Microsoft Office&lt;/a&gt; Suite which includes &lt;a href="http://office.microsoft.com/en-us/word/FX100487981033.aspx"&gt;Word&lt;/a&gt; and &lt;a href="http://office.microsoft.com/en-us/excel/FX100487621033.aspx"&gt;Excel&lt;/a&gt;, VBA can detect all sorts of things about your current hardware configuration using the &lt;a href="http://msdn.microsoft.com/en-us/library/aa394582.aspx"&gt;Windows Management Instrumentation (WMI)&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/API"&gt;API&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Through the WMI, you can get a list of all logical drives your computer is currently recognizing and search through them looking for your thumb or flash drive. You want to search through the logical drives because the actual physical drives may be partitioned into two or more logical drives and your templates can only be accessed through the logical drive.&lt;/p&gt;

&lt;p&gt;The first step in your macro is to create the &lt;a href="http://technet.microsoft.com/en-us/library/bb684728.aspx"&gt;connection&lt;/a&gt; to the WMI API so that you can query it for the list of drives. This is done using the following code:&lt;/p&gt;

&lt;div class="code"&gt;Set objWMIService = GetObject(&amp;quot;winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2&amp;quot;)&lt;/div&gt;

&lt;p&gt;Once the connection to the WMI is made, you can query the &lt;a href="http://technet.microsoft.com/en-us/library/bb684728.aspx"&gt;Win32_LogicalDisk&lt;/a&gt; class to get a list of all logical drives.&lt;/p&gt;

&lt;div class="code"&gt;Set colDisks = objWMIService.ExecQuery(&amp;quot;Select * from Win32_LogicalDisk&amp;quot;)&lt;/div&gt;

&lt;p&gt;The Win32_LogicalDisk will answer your query with an array that can be looped through until your thumb drive is found. There are two fields that can be used to determine if the drive being looked at is your thumb drive or not, the VolumeName or VolumeSerialNumber. &lt;/p&gt;

&lt;p&gt;Using the VolumeSerialNumber would be the ultimate way to ensure you had the correct drive, since it is nearly impossible for two drives to have the same serial number, it is a little more complicated to get the serial number, so we will just stick with the volume name.&lt;/p&gt;

&lt;p&gt;Since you will need the volume name for the next piece of code, go ahead and open Windows Explorer (quickest way is to hold down the Windows key on your keyboard and press the letter E). Windows Explorer shows you a list of all your drives with the volume names first followed by the drive letter inside of parenthesis.&lt;/p&gt;

&lt;p&gt;Now that you have your drive letter, you can use the following code to loop through the collection of drives until your drive is found.&lt;/p&gt;

&lt;div class="code"&gt;For Each objdisk In colDisks&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;On Error Resume Next&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;If objdisk.VolumeName = &amp;quot;ThumbDrive&amp;quot; Then&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;strMyDrive = objdisk.DeviceID&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Exit For&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;End If&lt;br /&gt;
Next&lt;/div&gt;

&lt;p&gt;You would just need to replace &lt;em&gt;ThumbDrive&lt;/em&gt; in the code above with the name of your thumb drive.&lt;/p&gt;

&lt;p&gt;Combining the code with the macro you sent in your question, the entire code would now look like this:&lt;/p&gt;

&lt;div class="code"&gt;Sub AttachMyTemplate()&lt;br /&gt;
Set objWMIService = GetObject(&amp;quot;winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2&amp;quot;)&lt;br /&gt;
Set colDisks = objWMIService.ExecQuery(&amp;quot;Select * from Win32_LogicalDisk&amp;quot;)&lt;br /&gt;
For Each objdisk In colDisks&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;On Error Resume Next&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;If objdisk.VolumeName = &amp;quot;PocketDrive&amp;quot; Then&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;strMyDrive = objdisk.DeviceID&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Exit For&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;End If&lt;br /&gt;
Next&lt;br /&gt;
With ActiveDocument&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.UpdateStylesOnOpen = True&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.AttachedTemplate = strMyDrive &amp;amp; &amp;quot;\Templates\MyTemplate.dot&amp;quot;&lt;br /&gt;
End With&lt;br /&gt;
End Sub
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/OVehaX8F8Na-4EOLkiBx40AXRMw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OVehaX8F8Na-4EOLkiBx40AXRMw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/OVehaX8F8Na-4EOLkiBx40AXRMw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OVehaX8F8Na-4EOLkiBx40AXRMw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/fAi3eHI5UKI/have_a_word_mac.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2009/02/have_a_word_mac.html</guid>
<category>Microsoft Office</category>
<pubDate>Wed, 04 Feb 2009 08:55:52 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2009/02/have_a_word_mac.html</feedburner:origLink></item>

<item>
<title>Displaying the Following Year in a Word Document</title>
<description>&lt;p&gt;Although not as powerful as using a &lt;a href="http://en.wikipedia.org/wiki/Visual_Basic_for_Applications"&gt;VBA macro&lt;/a&gt;, &lt;a href="http://www.microsoft.com/word/"&gt;Microsoft Word&lt;/a&gt; fields are quite powerful on their own, without the security worries of using a macro.&lt;/p&gt;

&lt;p&gt;In your case, as you have discovered, it is quite easy to display the current year. The field code to show the current year only would be:&lt;br /&gt;
&lt;div class="code"&gt;{ DATE \@ "yyyy" \* MERGEFORMAT }&lt;/div&gt;&lt;br /&gt;
In order to increment the result from the &lt;strong&gt;DATE&lt;/strong&gt; field, you have to nest that result into another field. You end up with one field serving as a parameter for another field.&lt;/p&gt;

&lt;p&gt;To get the following year, use the &lt;strong&gt;SUM&lt;/strong&gt; field with the result of &lt;strong&gt;DATE&lt;/strong&gt; field as one of its parameters. The final code will look like this:&lt;br /&gt;
&lt;div class="code"&gt;{ =SUM({ DATE \@ "yyyy" \* MERGEFORMAT }, 1) }&lt;/div&gt;&lt;/p&gt;

&lt;p&gt;Word uses the F9 key, in conjunction with the shift, Alt, and CTRL keys,  to work with fields.&lt;/p&gt;
&lt;table width="252" border="2" cellspacing="2" cellpadding="2"&gt;
  &lt;tr&gt;
    &lt;td&gt;Key&lt;/td&gt;
    &lt;td&gt;Function&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;F9&lt;/td&gt;
    &lt;td&gt;Update fields&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Shift+F9&lt;/td&gt;
    &lt;td&gt;Toggle this field only&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;CTRL+F9&lt;/td&gt;
    &lt;td&gt;Add field&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Alt+F9&lt;/td&gt;
    &lt;td&gt;Toggle all fields&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;ol&gt;To insert the nest fields, follow these steps:
	&lt;li&gt;Press &lt;strong&gt;CTRL+F9&lt;/strong&gt; to insert a new field (Word inserts the curly braces for you to indicate you are creating a field)&lt;/li&gt;
   &lt;li&gt;Type &lt;strong&gt;=SUM(,1)&lt;/strong&gt;&lt;/li&gt;
   &lt;li&gt;Press your left arrow key three times to place your cursor in front of the comma and press CTRL+F9 to insert a nest field&lt;/li&gt;
   &lt;li&gt;Type &lt;strong&gt;DATE \@ &amp;quot;yyyy&amp;quot; \* MERGEFORMAT&lt;/strong&gt;&lt;/li&gt;
   &lt;li&gt;Press F9 to update the fields&lt;/li&gt;
   &lt;li&gt;Press Alt+F9 to toggle the fields to show results&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/twHUqHekgKQL3GjnGrv3rqC1xrY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/twHUqHekgKQL3GjnGrv3rqC1xrY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/twHUqHekgKQL3GjnGrv3rqC1xrY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/twHUqHekgKQL3GjnGrv3rqC1xrY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/oaWhq25BJ2A/displaying_the.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2008/12/displaying_the.html</guid>
<category>Microsoft Office</category>
<pubDate>Mon, 29 Dec 2008 22:11:01 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2008/12/displaying_the.html</feedburner:origLink></item>

<item>
<title>Microsoft Out-of-Band Security Update</title>
<description>&lt;p&gt;A Micro&lt;a href="http://www.microsoft.com"&gt;&lt;/a&gt;soft out-of-band security update is one released outside of the once monthly schedule that Microsoft adheres to for security patches.&lt;/p&gt;

&lt;p&gt;Almost all computer software is going to have some kind of security flaws, especially something as complicated as &lt;a href="http://www.microsoft.com/windows/products/winfamily/ie/default.mspx"&gt;Internet Explorer&lt;/a&gt;. Being as &lt;a href="http://www.w3schools.com/browsers/browsers_stats.asp"&gt;popular&lt;/a&gt; as it is in terms of installed base, hackers tend to focus their efforts on finding flaws to exploit.&lt;/p&gt;

&lt;p&gt;When Microsoft released &lt;a href="http://en.wikipedia.org/wiki/Windows_98"&gt;Windows 98&lt;/a&gt;, they also included a "&lt;a href="http://en.wikipedia.org/wiki/Microsoft_Update"&gt;Windows Update&lt;/a&gt;" system that made it easy for users to update their systems which was great for home users but turned out to be not so great for corporate users. Some of those early updates tended to "break" other software and forced corporate IT support personnel to try and "unbreak" the latest update. &lt;/p&gt;

&lt;p&gt;Since Microsoft was releasing the updates as they developed them, IT departments had no way to prepare for an update or to keep track of what updates Microsoft had released.&lt;/p&gt;

&lt;p&gt;To reduce the cost of maintaining updated systems, Microsoft switched to releasing updates once a month on the second Tuesday of the month, also known as &lt;em&gt;&lt;a href="http://en.wikipedia.org/wiki/Patch_Tuesday"&gt;Patch Tuesday&lt;/a&gt;&lt;/em&gt;, with a bulletin released three days before the patches announcing what products the updates would cover.&lt;/p&gt;

&lt;p&gt;Although hackers are constantly trying to find some flaw in Microsoft products to take advantage of, many security researchers are doing the same thing.  To protect the public, when one of the researchers discovers a flaw, they will alert Microsoft and allow Microsoft time to develop a patch before announcing their findings to the public. It's when a hacker finds the flaw before one of the researchers and uses it to attack the general public that it becomes what's known as a "&lt;a href="http://en.wikipedia.org/wiki/Zero-Day_Attack"&gt;zero-day flaw&lt;/a&gt;" i.e., a flaw that Microsoft has not had a chance to work on before it becomes public knowledge.&lt;/p&gt;

&lt;p&gt;Most often, it is these zero-day flaws that Microsoft will release an out-of-band update for, especially if it is considered a critical threat.&lt;/p&gt;

&lt;p&gt;Bonus question: How does Microsoft &lt;a href="http://www.microsoft.com/technet/security/bulletin/rating.mspx"&gt;classify a threat&lt;/a&gt;?&lt;/p&gt;

&lt;p&gt;Microsoft will give a threat one of four ratings. &lt;/p&gt;

&lt;table cellspacing="0" cellpadding="0" width="75%" style="border: solid 1px #CCCCCC"&gt;
&lt;thead&gt;
&lt;tr valign="top" style="background-color:#cccccc"&gt;
   &lt;td width="20%"&gt;Rating&lt;/td&gt;&lt;td width="80%"&gt;Definition&lt;/td&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr valign="top"&gt;
   &lt;td&gt;&lt;p&gt;&lt;b&gt;Critical&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
   &lt;td&gt;&lt;p&gt;A vulnerability whose exploitation could allow the propagation of an Internet worm without user action.&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign="top" style="background-color:#99CC99"&gt;
   &lt;td&gt;&lt;p&gt;&lt;b&gt;Important&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
   &lt;td&gt;&lt;p&gt;A vulnerability whose exploitation could result in compromise of the confidentiality, integrity, or availability of users data, or of the integrity or availability of processing resources.&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign="top"&gt;
   &lt;td&gt;&lt;p&gt;&lt;b&gt;Moderate&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
   &lt;td&gt;&lt;p&gt;Exploitability is mitigated to a significant degree by factors such as default configuration, auditing, or difficulty of exploitation.&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign="top" style="background-color:#99cc99"&gt;
   &lt;td&gt;&lt;p&gt;&lt;b&gt;Low&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
   &lt;td&gt;&lt;p&gt;A vulnerability whose exploitation is extremely difficult, or whose impact is minimal.&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/AzF1U4UOTmEJEHNXpAniQI0Irew/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/AzF1U4UOTmEJEHNXpAniQI0Irew/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/AzF1U4UOTmEJEHNXpAniQI0Irew/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/AzF1U4UOTmEJEHNXpAniQI0Irew/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/c30d0GBLO4k/microsoft_outof.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2008/12/microsoft_outof.html</guid>
<category>Microsoft Windows</category>
<pubDate>Tue, 16 Dec 2008 16:33:56 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2008/12/microsoft_outof.html</feedburner:origLink></item>

<item>
<title>Adding the file path to a Word 2007 Document</title>
<description>&lt;p&gt;To add the file path and name to a Word 2007 document follow these steps (previous versions of Word are similar)&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
	&lt;li&gt;Click Insert-&gt;Quick Parts-&gt;Field&lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;Choose Document Information from the Categories drop-down&lt;br /&gt;
	&lt;li&gt;Select FileName from the Field Name &lt;/li&gt;&lt;br /&gt;
        &lt;li&gt;Choose formatting as desired&lt;/li&gt;&lt;br /&gt;
        &lt;li&gt;Check the Add path to filename check box if you want the full path&lt;/li&gt;&lt;br /&gt;
        &lt;li&gt;Click Ok&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/XfzGnoagTpdViHd1un61MapQ6wM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XfzGnoagTpdViHd1un61MapQ6wM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/XfzGnoagTpdViHd1un61MapQ6wM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XfzGnoagTpdViHd1un61MapQ6wM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/Lwk5-I-vN2k/adding_the_file.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2008/12/adding_the_file.html</guid>
<category>Microsoft Office</category>
<pubDate>Sun, 14 Dec 2008 23:06:02 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2008/12/adding_the_file.html</feedburner:origLink></item>

<item>
<title>Louisiana Citizens Insurance Tax Credit</title>
<description>&lt;p&gt;Since Hurricanes Katrina and Rita struck the gulf coast of Louisiana an 2005, the Louisiana Citizens FAIR Plan and Louisiana Citizens Coastal Plan both suffered claims that were larger than their reserves could handle.  These two insurance carriers are actually quasi-state run entities in that they are owned by the state but managed separately from the state's general budget.&lt;/p&gt;

&lt;p&gt;To settle the billion dollars in claims, the state borrowed money so that policy holders could be pair.  Now the issue is how to pay back that loan.&lt;/p&gt;

&lt;p&gt;Built into the legislation that created the plans is an assessment fee that must be paid by all insurance policy holders, regardless of which company they actually have their insurance with.&lt;/p&gt;

&lt;p&gt;The state is also able to declare an emergency and collect an emergency assessment along with the regular assessment until the loan is paid down.&lt;/p&gt;

&lt;p&gt;With the unexpected surplus in the year-ending 2007 state fiscal budget, Governor Kathleen Blanco was able to convince the state legislator to pass the bill recommended by the governor to refund the amount of the assessments policy holders have paid since the date of the storms.&lt;/p&gt;

&lt;p&gt;The assessments can be listed as a credit on your 2006 state tax returns.&lt;/p&gt;

&lt;p&gt;The &lt;a href="http://www.rev.state.la.us/sections/hottopics/calac_individual.asp#amount"&gt;State Department of Revenue and Taxation&lt;/a&gt; has several web pages available to explain the credit and how to claim it.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5P_mFORfsgfuksYl0hCXkMPOnYM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5P_mFORfsgfuksYl0hCXkMPOnYM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/5P_mFORfsgfuksYl0hCXkMPOnYM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5P_mFORfsgfuksYl0hCXkMPOnYM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/xKaNr8u_I2o/louisiana_citiz.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2007/03/louisiana_citiz.html</guid>
<category>Louisiana</category>
<pubDate>Wed, 07 Mar 2007 23:16:40 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2007/03/louisiana_citiz.html</feedburner:origLink></item>

<item>
<title>Do I need more memory and can I get it?</title>
<description>&lt;p&gt;One of the easier ways to improve the performance of Windows is to give it more memory.  &lt;a href="http://support.microsoft.com/kb/314865"&gt;Microsoft&lt;/a&gt; states that 64 MB of RAM is the minimum need to operate Windows XP, either Home or Professional editions, with 128 MB being recommended.  I have seen some XP machines with only 128 MB and they are slow as molasses, I'm not sure if I could stand around long enough to watch a machine with only 64 MB try to boot up, regardless of Microsoft claims.&lt;/p&gt;

&lt;p&gt;In your case, you have 384 MB of RAM which is healthy enough for someone who is doing email, surfing the web, working with office applications, and a minimal amount of graphic design work.&lt;/p&gt;

&lt;p&gt;You don't mention which version of Photoshop you are using, so I'm going to assume the professional version.  &lt;a href="http://www.adobe.com/products/photoshop/systemreqs.html"&gt;Adobe&lt;/a&gt; says 320 MB is the minimum with at least 384 MB recommended.  So you are sitting right on the bottom line of performance.&lt;/p&gt;

&lt;p&gt;If you are going to be doing a lot of graphics work, I would max out the motherboard on RAM adding as much as it could handle.  If you can't do that then go with at least 1 GB of RAM.&lt;/p&gt;

&lt;p&gt;How do you find out how much memory your motherboard can handle?  The best way I've found is to visit &lt;a href="http://www.Crucial.com"&gt;Crucial&lt;/a&gt;'s web site and use their system scanner to tell you how much memory you have, in what configuration, and how much you can add.  It will then give you links to the different types and sizes of memory that should work with your PC.  You can then make a decision on the best memory upgrade path you should take.&lt;/p&gt;

&lt;p&gt;One caveat.  Sometimes the system tool can get all the information it needs to show you your different options.  In those cases, you can use the Wizard to select your motherboard and figure out the best chips for you.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/dd-rUMheHykxY-V491iBYp_yHp8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dd-rUMheHykxY-V491iBYp_yHp8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/dd-rUMheHykxY-V491iBYp_yHp8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dd-rUMheHykxY-V491iBYp_yHp8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/Y2KfPy5XFCs/do_i_need_more.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2007/02/do_i_need_more.html</guid>
<category>PC Hardware</category>
<pubDate>Mon, 12 Feb 2007 23:58:13 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2007/02/do_i_need_more.html</feedburner:origLink></item>

<item>
<title>The Final Harry Potter Book</title>
<description>&lt;p&gt;&lt;a href="http://www.amazon.com/gp/search?ie=UTF8&amp;keywords=J.%20K.%20Rowling&amp;tag=westleyannis&amp;index=blended&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325"&gt;J. K. Rowling&lt;/a&gt; and Scholastic publishing have just announced the title of the final book in the &lt;a href="http://www.amazon.com/gp/search?ie=UTF8&amp;keywords=Harry%20Potter&amp;tag=westleyannis&amp;index=blended&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325"&gt;Harry Potter&lt;/a&gt; series, &lt;em&gt;&lt;a href="http://www.amazon.com/exec/obidos/asin/0545010225/westleyannis"&gt;Harry Potter and the Deathly Hallows&lt;/a&gt;&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;As with the previous book, &lt;em&gt;&lt;a href="http://www.amazon.com/exec/obidos/asin/0439784549/westleyannis"&gt;Harry Potter and the Half-Blood Prince&lt;/a&gt;&lt;/em&gt;, there will be two editions, a standard hardcover book and a deluxe edition which includes additional artwork and a slipcover.&lt;/p&gt;

&lt;p&gt;Amazon is accepting pre-orders for the book with their &lt;a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2Fexec%2Fobidos%2Ftg%2Fbrowse%2F-%2F468502%2Fpop-up&amp;tag=westleyannis&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325"&gt;Pre-Order Price Guarantee&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The standard hardcover can be found &lt;a href="http://www.amazon.com/exec/obidos/asin/0545010225/westleyannis"&gt;here&lt;/a&gt; while the &lt;a href="http://www.amazon.com/exec/obidos/asin/0545029376/westleyannis"&gt;deluxe edition&lt;/a&gt; is here.&lt;/p&gt;

&lt;p&gt;&lt;iframe src="http://rcm.amazon.com/e/cm?t=westleyannis&amp;o=1&amp;p=13&amp;l=ur1&amp;category=harrypotter&amp;banner=1J0FZGQYRKKN19GRRSG2&amp;f=ifr" width="468" height="60" scrolling="no" border="0" marginwidth="0" style="border:none;" frameborder="0"&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/a9_6B1jNGEX8rDTqcF_gYoWdYDU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/a9_6B1jNGEX8rDTqcF_gYoWdYDU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/a9_6B1jNGEX8rDTqcF_gYoWdYDU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/a9_6B1jNGEX8rDTqcF_gYoWdYDU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/5OhxpdhCdRk/the_final_harry.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2007/02/the_final_harry.html</guid>
<category>Book Recommendations</category>
<pubDate>Sat, 03 Feb 2007 17:51:25 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2007/02/the_final_harry.html</feedburner:origLink></item>

<item>
<title>Archdiocese of New Orleans Seeking Parishoners</title>
<description>&lt;p&gt;The &lt;a href="http://www.arch-no.org/"&gt;Archdiocese of New Orleans&lt;/a&gt; is in the planning stages for rebuilding Our Lady of Lourdes Church in Violet, LA.  They are asking all parishoners to let them know where they are and to submit comments on the rebuilding of the church.&lt;/p&gt;
 
&lt;p&gt;Please use the form below to submit your information electronically or you can mail them to:&lt;/p&gt;
&lt;blockquote&gt;Our Lady of Lourdes Church&lt;br /&gt;
C/O Janet Perez&lt;br /&gt;
P.O. Box 783&lt;br /&gt;
Violet LA  70092&lt;/blockquote&gt;
 
&lt;form method="post" action="/cgi-sys/formmail.pl"&gt;
&lt;input type="hidden" name="recipient" value="lourdes@askwestley.com" /&gt;
&lt;input type="hidden" name="subject" value="Our Lady of Lourdes Church" /&gt;
&lt;input type="hidden" name="env_report" value="REMOTE_HOST,HTTP_USER_AGENT" /&gt;
&lt;INPUT TYPE="hidden" NAME="print_config" VALUE="email"&gt;
&lt;input type="hidden" name="print_blank_fields" value="1" /&gt;
&lt;input type="hidden" name="title" value="Thanks for the comments!" /&gt;
&lt;input type="hidden" name="return_link_url" value="http://www.askwestley.com" /&gt;
&lt;input type="hidden" name="return_link_title" value="Return to Ask Westley!" /&gt;
&lt;center&gt;
&lt;table border="0" cellpadding="2" width="90%"&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Name&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="realname" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Email&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="email" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Phone Number&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="Phone" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Street Address&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="StreetAddress" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;City&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="City" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;State&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="State" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Zipcode&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="Zipcode" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="2"&gt;&lt;blockquote&gt;Comments/Suggestions?&lt;/blockquote&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="2"&gt;&lt;textarea rows="12" cols="50" name="Comments" style="margin-left: 0em;"&gt;&lt;/textarea&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="2"&gt;&lt;br /&gt;&lt;input type="submit" value="Submit" /&gt;&lt;p&gt; &lt;/p&gt;
&lt;div style='width:75%;font-size:80%;line-height:1.0'&gt;
Note: Questions or comments submitted to Ask Westley! will be edited, become property of Ask Westley! and may be republished in any format.
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/center&gt;
&lt;/form&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/xwKjJLQiWNv0wnQ99s-Ud_YSZ50/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xwKjJLQiWNv0wnQ99s-Ud_YSZ50/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/xwKjJLQiWNv0wnQ99s-Ud_YSZ50/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xwKjJLQiWNv0wnQ99s-Ud_YSZ50/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/DVUUn9zKgGo/archdiocese_of.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2007/01/archdiocese_of.html</guid>
<category>St. Bernard Parish</category>
<pubDate>Sun, 28 Jan 2007 21:37:15 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2007/01/archdiocese_of.html</feedburner:origLink></item>

<item>
<title>Parade Schedule for St. Bernard Parish in 2007</title>
<description>&lt;p&gt;The only krewe that will be parading for &lt;a href="http://en.wikipedia.org/wiki/Mardi_Gras"&gt;Mardi Gras&lt;/a&gt; in the 2007 carnival season will be the Knights of Nemesis.  After Mardi Gras, the Irish-Italian-Islenos parade, founded by La. State &lt;a href="http://senate.legis.state.la.us/Boasso/"&gt;Sen. Walter Boasso&lt;/a&gt;, will roll.  And after a one year hiatus because of &lt;a href="http://en.wikipedia.org/wiki/Hurricane_Katrina"&gt;Hurricane Katrina&lt;/a&gt;, the Knights of Columbus Crawfish Festival will return.&lt;/p&gt;

&lt;p&gt;The schedule and parade routes are listed below.&lt;/p&gt;

&lt;p&gt;Knights of Nemesis&lt;br /&gt;
Sunday, February 11, 2pm&lt;br /&gt;
Start at Paris Road and Judge Perez.  East to Campagna. U-turn to the government complex, then u-turn back to Paris Road and Judge Perez.&lt;br /&gt;
23 Floats with 400+ riders. &lt;br /&gt;
Royal Knight - Charles Ponstein&lt;br /&gt;
Goddess Nemesis - Kim Campo&lt;br /&gt;
Celebrity Guest - &lt;a href="http://en.wikipedia.org/wiki/Bobby_Hebert"&gt;Bobby Hebert&lt;/a&gt;&lt;br /&gt;
Special Throws: Medallion Bead, 22 oz cups, t-shirts&lt;br /&gt;
 &lt;br /&gt;
Irish Italian Islenos Parade&lt;br /&gt;
Sunday, March 11, 1pm&lt;br /&gt;
Start at the old Wal-Mart, then west to the govt complex then u-turn to Campagna, then u-turn back to the old wal-mart.&lt;br /&gt;
42 floats with 1600+ riders&lt;br /&gt;
Usual cabbage, potatos,etc as well as 22oz cups and t-shirts.&lt;br /&gt;
 &lt;br /&gt;
Knights of Columbus Crawfish Festival&lt;br /&gt;
Friday, March 30 through Sunday, April 1.&lt;br /&gt;
Old Wal-Mart parking Lot.&lt;br /&gt;
More details to follow.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/LAQFxgzOi3JcG_7jSj1mTan3IVU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/LAQFxgzOi3JcG_7jSj1mTan3IVU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/LAQFxgzOi3JcG_7jSj1mTan3IVU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/LAQFxgzOi3JcG_7jSj1mTan3IVU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/vw_yIbGW0kM/parade_schedule.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2007/01/parade_schedule.html</guid>
<category>St. Bernard Parish</category>
<pubDate>Sun, 28 Jan 2007 20:11:22 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2007/01/parade_schedule.html</feedburner:origLink></item>

<item>
<title>MovableType is Killing My Scripts</title>
<description>&lt;p&gt;Setting the &lt;strong&gt;Text Formatting&lt;/strong&gt; option to &lt;strong&gt;Convert Line Breaks&lt;/strong&gt; is the default setting for &lt;a href="http://www.sixapart.com/movabletype/"&gt;MovableType&lt;/a&gt; and, most likely, all other &lt;a href="http://en.wikipedia.org/wiki/Blog"&gt;blog&lt;/a&gt; software also.  It allows the author to ignore the needed &lt;a href="http://www.w3.org/MarkUp/"&gt;HTML&lt;/a&gt; code to separate paragraphs.&lt;/p&gt;

&lt;p&gt;As you have discovered, sometimes you don't want the blogging software to automatically add the HTML code.  It would seem that setting the &lt;strong&gt;Text Formatting&lt;/strong&gt; option to &lt;strong&gt;None&lt;/strong&gt; would do the trick, but it isn't quite that easy.&lt;/p&gt;

&lt;p&gt;Whether it is a bug or a feature, MovableType will look at the contents of your entry, especially any HTML tags and use that as the deciding factor as to whether or not to convert line breaks.&lt;/p&gt;

&lt;p&gt;MovableType will stop converting line breaks when it encounters any of the following HTML tags:&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
&lt;li&gt;h1, h2, h3, h4, h5, h6&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;table&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;ol, dl, ul&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;menu&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;dir&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;p&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;pre&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;center&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;form, fieldset, select&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;blockquote&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;address&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;div&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;hr&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;&lt;/p&gt;

&lt;p&gt;This means you could wrap your &lt;a href="http://www.javascript.com/"&gt;JavaScript&lt;/a&gt; code inside of a &amp;lt;div&amp;gt; or &amp;lt;center&amp;gt; element, but you must be careful.  If you have one blank line, MovableType will start converting line breaks again.  Also, be sure you put all of the JavaScript code inside of element, including the JavaScript header, as shown below:&lt;/p&gt;

&lt;div class="code"&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;script language="javascript" type="text/javascript"&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
function myFunction()&lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;myCode&lt;br /&gt;
}&lt;br /&gt;
// --&amp;gt;&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/pbNDpEpPCJ0LpeNofOX9Vfmq9FA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pbNDpEpPCJ0LpeNofOX9Vfmq9FA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/pbNDpEpPCJ0LpeNofOX9Vfmq9FA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pbNDpEpPCJ0LpeNofOX9Vfmq9FA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/NPVRK25j2Nk/movabletype_is_1.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2007/01/movabletype_is_1.html</guid>
<category>Internet/Web Services</category>
<pubDate>Mon, 22 Jan 2007 23:16:24 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2007/01/movabletype_is_1.html</feedburner:origLink></item>

<item>
<title>Send Comments to Your St. Bernard Parish Council</title>
<description>&lt;p&gt;Since Hurricane Katrina, Ask Westley! has become a source of information to St. Bernard Parish residents about their parish.  To help continue strengthen that link back home, we are pleased to announce that we have now enabled a way for residents to send their questions or comments directly to their Council Person.&lt;/p&gt;

&lt;p&gt;We are doing this on our own because we feel it is important for residents to be able to contact their elected officials as easily as possible.  We have not asked for, nor have we received anything from the St. Bernard Parish Council endorsing our contact form.&lt;/p&gt;

&lt;p&gt;Although we are forwarding your comments to the St. Bernard Parish Council, we can not guarantee that they will be received by the St. Bernard Parish Council or that you will receive a response.  Furthermore, we do not accept any liability if your message is not received by the St. Bernard Parish Council.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;By submitting your question or comment to the St. Bernard Parish Council through this webform, you agree to the disclaimer and limit of liability printed below.&lt;/strong&gt;&lt;/p&gt;
 
&lt;form name="CouncilForm" method="post" action="/cgi-sys/formmail.pl"&gt;
&lt;input type="hidden" name="recipient" value="spam@askwestley.com"&gt;
&lt;input type="hidden" name="subject" value="Council Comment/Question" /&gt;
&lt;input type="hidden" name="env_report" value="REMOTE_HOST,HTTP_USER_AGENT" /&gt;
&lt;INPUT TYPE="hidden" NAME="print_config" VALUE="email"&gt;
&lt;input type="hidden" name="print_blank_fields" value="1" /&gt;
&lt;input type="hidden" name="title" value="Thanks for the comments!" /&gt;
&lt;input type="hidden" name="return_link_url" value="http://www.askwestley.com" /&gt;
&lt;input type="hidden" name="return_link_title" value="Return to Ask Westley!" /&gt;
&lt;center&gt;
&lt;table border="0" cellpadding="2" width="90%"&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Name&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="realname" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Email&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="email" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Phone Number&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="Phone" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Street Address&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="StreetAddress" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;City&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="City" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;State&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="State" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Zipcode&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="Zipcode" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Council Person&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;

&lt;center&gt;
&lt;script language="javascript" type="text/javascript"&gt;
&lt;!--
var CouncilRecipient;
var CouncilSubject;
function updateEmail()
{
   switch (document.CouncilForm.District.value) {
      case "NoneSelected": 
         CouncilRecipient="spam@askwestley.com";
         CouncilSubject="Council Comment/Question";
         break;
      case "District A": 
         CouncilRecipient="DistrictA@askwestley.com";
         CouncilSubject="District A Comment/Question";
         break;
      case "District B": 
         CouncilRecipient="DistrictB@askwestley.com";
         CouncilSubject="District B Comment/Question";
         break;
      case "District C": 
         CouncilRecipient="DistrictC@askwestley.com";
         CouncilSubject="District C Comment/Question";
         break;
      case "District D": 
         CouncilRecipient="DistrictD@askwestley.com";
         CouncilSubject="District D Comment/Question";
         break;
      case "District E": 
         CouncilRecipient="DistrictE@askwestley.com";
         CouncilSubject="District E Comment/Question";
         break;
      case "At-Large East": 
         CouncilRecipient="At-LargeEast@askwestley.com";
         CouncilSubject="Councilman-at-Large East Comment/Question";
         break;
      case "At-Large West": 
         CouncilRecipient="At-LargeWest@askwestley.com";
         CouncilSubject="Councilman-at-Large West Comment/Question";
         break;
   }
   document.CouncilForm.recipient.value=CouncilRecipient;
   document.CouncilForm.subject.value=CouncilSubject;
}
// --&gt;
&lt;/script&gt;
&lt;/center&gt;
&lt;select name="District" onChange="updateEmail()"&gt;
   &lt;option value="NoneSelected"&gt;Please select your district&lt;/option&gt;
   &lt;option value="District A"&gt;District A - Mark Madary&lt;/option&gt;
   &lt;option value="District B"&gt;District B - Judy Darby HoffMeister&lt;/option&gt;
   &lt;option value="District C"&gt;District C - Kenny Henderson&lt;/option&gt;
   &lt;option value="District D"&gt;District D - Craig P. Taffaro, Jr.&lt;/option&gt;
   &lt;option value="District E"&gt;District E - Tony Ricky Melerine&lt;/option&gt;
   &lt;option value="At-Large East"&gt;At-Large East - Lynn Dean&lt;/option&gt;
   &lt;option value="At-Large West"&gt;At-Large West - Joey DiFatta, Jr.&lt;/option&gt;
&lt;/select&gt;
   
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="2"&gt;&lt;blockquote&gt;Question/Comment&lt;/blockquote&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="2"&gt;&lt;textarea rows="12" cols="50" name="Comment" style="margin-left: 0em;"&gt;&lt;/textarea&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="2"&gt;&lt;br /&gt;
&lt;input type="submit" value="Submit" /&gt;&lt;p&gt; &lt;/p&gt;
&lt;div style='width:75%;font-size:80%;line-height:1.0'&gt;
Note: Questions or comments submitted to Ask Westley! will be edited, become property of Ask Westley! and may be republished in  any format.
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/center&gt;
&lt;/form&gt;
&lt;script type="text/javascript" language="javascript" src="formmail.js"&gt;
&lt;/script&gt;
&lt;hr /&gt;
&lt;div class="side"&gt;
&lt;h2&gt;Disclaimer and Limit of Liability&lt;/h2&gt;
&lt;p&gt;While Ask Westley! uses reasonable efforts to include accurate and up-to-date information on this web site, it makes no 

representations as to the accuracy, timeliness or completeness of that information. In using this web site, you agree that its 

information and services are provided "as is, as available" without warranty, express or implied, and that you use this site at 

your own risk.&lt;/p&gt;

&lt;p&gt;The services provided through links on this site are independent of Ask Westley! and are for your convenience only. Ask 

Westley! does not endorse or recommend the services of any company or service, nor is Ask Westley! responsible for any services 

or goods provided by such companies. Ask Westley! shall not be liable for any damages or costs arising out of or in any way 

connected with your use of any information or service accessed through this web site.&lt;/p&gt;

&lt;p&gt;You further agree that Ask Westley!, da-parish.com, Westley Annis, and any other parties involved in creating, maintaining, 

and delivering this site's contents have no liability for direct, indirect, incidental, punitive, or consequential damages with 

respect to the information, services, or content contained on or otherwise accessed through this web site.&lt;/p&gt;

&lt;p&gt;The applications accessed through this web page are for your convenience. Every reasonable effort has been made to assure 

the accuracy and reliability of the applications. Ask Westley! makes no warranty, representation or guaranty as to the content, 

sequence, accuracy, timeliness or completeness of any of the applications provided herein. The user of these applications 

should not rely on the data provided herein for any reason. Ask Westley! explicitly disclaims any representations and 

warranties, including, without limitation, the implied warranties of merchantability and fitness for a particular purpose. Ask 

Westley! shall assume no liability for any errors, omissions, or inaccuracies in the information provided regardless of how 

caused. Ask Westley! shall assume no liability for any decisions made or actions taken or not taken by the user of the 

applications in reliance upon any information or data furnished hereunder.&lt;/p&gt;

&lt;p&gt;The use of these applications indicates your unconditional acceptance of the above disclaimer. &lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/kKrOwozo7r62csWx85lkLxpetss/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kKrOwozo7r62csWx85lkLxpetss/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/kKrOwozo7r62csWx85lkLxpetss/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kKrOwozo7r62csWx85lkLxpetss/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/TwiPTgzo5bY/send_comments_t.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2007/01/send_comments_t.html</guid>
<category>St. Bernard Parish</category>
<pubDate>Mon, 22 Jan 2007 00:14:54 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2007/01/send_comments_t.html</feedburner:origLink></item>

<item>
<title>Library Comments Wanted for St. Bernard Parish</title>
<description>&lt;p&gt;Representatives from the Bush-Clinton Katrina Fund and the Americans for Libraries Council will begin working with the St. Bernard Parish Library in February 2007.  The Bush-Clinton Katrina Fund is helping libraries devastated by Hurricane Katrina with the "brick and mortar" phase of library restoration.&lt;/p&gt;
 
&lt;p&gt;Officials from both groups recognize the important role public libraries played in the aftermath of Hurricane Katrina.  Public libraries provided invaluable services to displaced residents by means of free internet access, free gathering areas, information centers and community support.  Without these services many hurricane victims would have had no way to communicate with loved ones, file FEMA and SBA applications, check on the status of various applications and seek information regarding their hometowns. &lt;/p&gt;
 
&lt;p&gt;As part of this process, St. Bernard Parish Library staff members are working with representatives of the Bush-Clinton Katrina Fund and the Americans for Libraries Council by collecting materials to be included in the 'St. Bernard Parish Library Book."&lt;/p&gt;
 
&lt;p&gt;Staff members are asking library patrons to put in writing their responses to two questions.  Those questions are "What does your library mean to you?" and "What would you like to see in your new library?"  Patrons who submit letters are asked to provide current contact information should their responses be chosen to be included in the library's book.  Parish residents interested in helping can send their letters to the following address or type them into the following web form:&lt;/p&gt;
 
&lt;blockquote&gt;St. Bernard Parish Library&lt;br /&gt;
C/O Janet Perez&lt;br /&gt;
P.O. Box 783&lt;br /&gt;
Violet LA  70092&lt;/blockquote&gt;
 
&lt;p&gt;Once the St. Bernard Parish Library Book is completed, it will be used as a tool and information source for groups and individuals interested in aiding the parish's library in its rebuilding process.  
St. Bernard Parish Library staff members hope that many of its patrons will submit letters of support.  Prior to Hurricane Katrina, the library served its patrons by providing reading materials, free internet access, storytimes, afterschool programs, adult programs, reference materials and assistance, meeting space, and community resources and they are anxious to be able to provide these types of services again. &lt;/p&gt;
 
&lt;form method="post" action="/cgi-sys/formmail.pl"&gt;
&lt;input type="hidden" name="recipient" value="library@askwestley.com" /&gt;
&lt;input type="hidden" name="subject" value="St. Bernard Library" /&gt;
&lt;input type="hidden" name="env_report" value="REMOTE_HOST,HTTP_USER_AGENT" /&gt;
&lt;INPUT TYPE="hidden" NAME="print_config" VALUE="email"&gt;
&lt;input type="hidden" name="print_blank_fields" value="1" /&gt;
&lt;input type="hidden" name="title" value="Thanks for the comments!" /&gt;
&lt;input type="hidden" name="return_link_url" value="http://www.askwestley.com" /&gt;
&lt;input type="hidden" name="return_link_title" value="Return to Ask Westley!" /&gt;
&lt;center&gt;
&lt;table border="0" cellpadding="2" width="90%"&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Name&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="realname" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Email&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="email" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Phone Number&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="Phone" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Street Address&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="StreetAddress" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;City&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="City" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;State&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="State" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;&lt;div class="calendarhead"&gt;Zipcode&lt;/div&gt;&lt;/td&gt;
&lt;td width="70%" align="left"&gt;&lt;input type="text" name="Zipcode" size="35" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="2"&gt;&lt;blockquote&gt;What does your library mean to you?&lt;/blockquote&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="2"&gt;&lt;textarea rows="12" cols="50" name="Meaning" style="margin-left: 0em;"&gt;&lt;/textarea&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="2"&gt;&lt;blockquote&gt;What would you like to see in your new library?&lt;/blockquote&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="2"&gt;&lt;textarea rows="12" cols="50" name="NewLibrary" style="margin-left: 0em;"&gt;&lt;/textarea&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan="2"&gt;&lt;br /&gt;&lt;input type="submit" value="Submit" /&gt;&lt;p&gt; &lt;/p&gt;
&lt;div style='width:75%;font-size:80%;line-height:1.0'&gt;
Note: Questions or comments submitted to Ask Westley! will be edited, become property of Ask Westley! and may be republished in any format.
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/center&gt;
&lt;/form&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/zHoKikVgWFvJrLhHgD5GsLrDugw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zHoKikVgWFvJrLhHgD5GsLrDugw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/zHoKikVgWFvJrLhHgD5GsLrDugw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zHoKikVgWFvJrLhHgD5GsLrDugw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/4IiIWFHujeQ/library_comment.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2007/01/library_comment.html</guid>
<category>St. Bernard Parish</category>
<pubDate>Sun, 21 Jan 2007 22:11:17 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2007/01/library_comment.html</feedburner:origLink></item>

<item>
<title>Louisiana Small Business Retention Program</title>
<description>&lt;p&gt;The &lt;a href="http://www.louisiana.gov"&gt;State of Louisiana&lt;/a&gt; has committed to $216.5 million dollars to several programs to help small businesses in coastal Louisiana recover from Hurricanes Katrina and Rita.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Louisiana Small Business Retention Program&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Governor Blanco, the Louisiana Recovery Authority and Louisiana Economic Development announced a proposal to reallocate $100 million of the economic development disaster recovery programs to provide much-needed grants to small businesses.  The additional funds would provide financial relief to sustain and restart small businesses in the most severely impacted areas of Louisiana. Pending final approval of the proposed amendment, the state will determine eligible amounts and expects to begin accepting applications in early January 2007.&lt;/p&gt;

&lt;p&gt;This $100 million grant program comes in addition to a $38 million dollar program for 0% interest loans, a $68 million dollar program for loan guarantees, and a $9.5 million general assistance program for small businesses. Collectively, these programs are intended to provide a range of much-needed assistance to small businesses struggling to rebound from last year’s storms. More information about each program can be found below.&lt;/p&gt;

&lt;p&gt;Small businesses in the following areas of the state are eligible to apply:&lt;/p&gt;

&lt;p&gt;*20 Damaged Parishes&lt;br /&gt;
Calcasieu, Cameron, Jefferson, Orleans, Plaquemines, St. Bernard, St. Tammany, Vermilion, Acadia, Allen, Beauregard, Iberia, Jefferson Davis, Lafourche, St. Charles, St. John the Baptist, St. Mary, Tangipahoa, Terrebonne, and Washington&lt;/p&gt;

&lt;p&gt;**Most Affected Parishes, Cities/Towns &amp; Zip Codes&lt;br /&gt;
Parishes: St. Bernard, Plaquemines, Orleans, Cameron&lt;br /&gt;
Cities/Towns: Angie, Slidell, Erath, Lafitte, Folsom, Chauvin, Delcambre, Montegut, Pearl River, Springfield, Madisonville, Gretna, Franklinton&lt;br /&gt;
Zip Codes: 70373, 70006, 70461, 70458, 70528, 70463, 70533, 70067, 70464, 70460, 70065, 70397, 70353&lt;/p&gt;

&lt;p&gt;Visit &lt;a href="http://www.louisianaforward.com/louisiana-small-business-retention-programs.aspx"&gt;LouisianaForward.com&lt;/a&gt; for more information.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/54mAYHI_euwvJlOHWvoVS4IMBHw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/54mAYHI_euwvJlOHWvoVS4IMBHw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/54mAYHI_euwvJlOHWvoVS4IMBHw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/54mAYHI_euwvJlOHWvoVS4IMBHw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/5FFG0ITc-3E/louisiana_small.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2007/01/louisiana_small.html</guid>
<category>Louisiana</category>
<pubDate>Thu, 18 Jan 2007 00:11:02 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2007/01/louisiana_small.html</feedburner:origLink></item>

<item>
<title>I Can't Print Using My Old DOS Program</title>
<description>&lt;p&gt;The simple answer is to create a DOS pointer to your network printer.  This can be done in just a few steps.&lt;/p&gt;

&lt;p&gt;1) Share your printer.  Open the Printers folder, right-click on the printer, select sharing and give it a share name.  Since you will be using this in DOS, you must follow the DOS naming rules:&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
&lt;li&gt;No spaces in name&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;Name cannot be longer than 12 characters&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;&lt;/p&gt;

&lt;p&gt;2) If you don't already know your PC's Computer Name, look it up.  Right click on My Computer and then click Properties.  Click on the Computer Name tab to view the name of your computer.&lt;/p&gt;

&lt;p&gt;3) Open a DOS window and enter the following command &lt;br /&gt;
&lt;blockquote&gt;Net use lpt3: \\&amp;lt;YourComputerName&amp;gt;\&amp;lt;PrinterShareName&amp;gt; /persistent:yes&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;Substitute your computer name and the share name you assigned to the printer in step 1 and you are ready to tell your DOS program to print to LPT3:.&lt;/p&gt;

&lt;p&gt;Bonus Answer&lt;/p&gt;

&lt;p&gt;If you need to use LPT1 or LPT2, you need to go into your system BIOS and turn off or reassign any printer ports already assigned to LPT1 or LPT2.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/TVnq91s27fw3PJwZSepZsWxJ0dA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/TVnq91s27fw3PJwZSepZsWxJ0dA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/TVnq91s27fw3PJwZSepZsWxJ0dA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/TVnq91s27fw3PJwZSepZsWxJ0dA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/KczK7dCiAvU/i_cant_print_us.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2007/01/i_cant_print_us.html</guid>
<category>Microsoft Windows</category>
<pubDate>Thu, 11 Jan 2007 00:37:15 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2007/01/i_cant_print_us.html</feedburner:origLink></item>

<item>
<title>Help! I can't locate my son's immunization records.</title>
<description>&lt;p&gt;Joyce,&lt;/p&gt;

&lt;p&gt;First let me say shame on your son's school in Chicago.  According to the &lt;a href="http://www.isbe.state.il.us/accountability/html/health_questions.htm"&gt;Illinois State Board of Education&lt;/a&gt;, his shot records are to be a part of his permanent school records and maintained for a period of 60 years. &lt;/p&gt;

&lt;p&gt;However, all hope is not lost.  The &lt;a href="http://www.cdc.gov"&gt;Centers for Disease Control and Prevention (CDC)&lt;/a&gt; in cooperation with individual state goverments has started the &lt;a href="http://www.cdc.gov/Nip/registry/default.htm"&gt;National Immunization Program&lt;/a&gt; to maintain an electronic immunization record for all children.  Each state has its own program, so you can't contact the CDC directly.  Instead you need to contact the  board of health for the state in which your child received his shots.&lt;/p&gt;

&lt;p&gt;In the State of Illinois, where I'm assuming your son received his most recent shots, the program is called &lt;a href="http://www.idph.state.il.us/health/infect/totsfs.htm"&gt;TOTS (Tracking Our Toddlers Shots)&lt;/a&gt; and you can call their help desk at 800-942-0024.&lt;/p&gt;

&lt;p&gt;For contact information in other states use one of these two web pages maintained by the CDC:&lt;br /&gt;
&lt;a href="http://www.cdc.gov/mmwr/international/relres.html"&gt;State Health Departments&lt;/a&gt; - Select state from a drop down list to go to their Department of Public Health web site.&lt;br /&gt;
&lt;a href="http://www.cdc.gov/Nip/registry/contacts/contact-prog-tech.htm"&gt;State IIS Staff&lt;/a&gt; - Directory of technical contacts for each states immunization registry.  If you can't find a phone number to call from the above web page, use this one to find someone you can ask for further help.&lt;/p&gt;

&lt;p&gt;Most, if not all states have started an immunization registry, but not all doctors participate.  Ask your child's doctor if they participate in the registry.  If they don't, ask them if they are planning on doing so.  If not, contact your state department of health to either find another doctor who does participate or if you have your child added manually.&lt;/p&gt;

&lt;p&gt;Publicly funded clinics usually participate in the registry.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/FswyMO6_D2Kki6cAV52NVh7Cico/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FswyMO6_D2Kki6cAV52NVh7Cico/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/FswyMO6_D2Kki6cAV52NVh7Cico/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FswyMO6_D2Kki6cAV52NVh7Cico/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</description>
<link>http://feedproxy.google.com/~r/AskWestley/~3/SpBJGcEOn1w/help_i_cant_loc.html</link>
<guid isPermaLink="false">http://www.askwestley.com/archives/2006/10/help_i_cant_loc.html</guid>
<category>Health</category>
<pubDate>Mon, 30 Oct 2006 20:24:39 -0600</pubDate>
<feedburner:origLink>http://www.askwestley.com/archives/2006/10/help_i_cant_loc.html</feedburner:origLink></item>


</channel>
</rss>
