<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.chetedwards.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Chet Edwards For Congress - Photo Galleries</title>
 <link>http://www.chetedwards.com/taxonomy/term/63/0</link>
 <description>Photo Galleries</description>
 <language>en</language>
<item>
 <title>Media Center</title>
 <link>http://www.chetedwards.com/node/198</link>
 <description>&lt;p style=&quot;text-align: left; font-size: 1.1em; color: #333333; line-height: 1.3em; margin: 20px 10px 20px; font-weight: bold;&quot;&gt;Scroll through the Media Center to find video, photo galleries, and downloadable resources (fact sheets and walk cards) or click one of the links below.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;/taxonomy/term/75&quot;&gt;Radioclips&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/taxonomy/term/69&quot;&gt;Videoclips&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/taxonomy/term/72&quot;&gt;TV Ads&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/taxonomy/term/5&quot;&gt;Fact Sheets&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/taxonomy/term/73&quot;&gt;Walk Cards&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/taxonomy/term/63&quot;&gt;Photo Galleries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;br&gt;&lt;br /&gt;
&lt;!--break--&gt;&lt;/p&gt;
</description>
 <comments>http://www.chetedwards.com/node/198#comment</comments>
 <category domain="http://www.chetedwards.com/taxonomy/term/5">Fact Sheets</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/8">Media Center</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/63">Photo Galleries</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/72">TV Ads</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/69">Videoclips</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/73">Walk Cards</category>
 <pubDate>Sun, 20 Sep 2009 13:55:35 -0700</pubDate>
 <dc:creator>Kat</dc:creator>
 <guid isPermaLink="false">198 at http://www.chetedwards.com</guid>
</item>
<item>
 <title>Chet and his family at the Westfest Parade.</title>
 <link>http://www.chetedwards.com/node/188</link>
 <description>&lt;br /&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
function JustSoPicWindow(imageName,imageWidth,imageHeight,alt,bgcolor,hugger,hugMargin) {
// by E Michael Brandt of ValleyWebDesigns.com - Please leave these comments intact.
// version 3.0.4  

	if (bgcolor==&quot;&quot;) {
		bgcolor=&quot;#FFFFFF&quot;;
	}
	var adj=10
	var w = screen.width;
	var h = screen.height;
	var byFactor=1;

	if(w&lt;740){
	  var lift=0.90;
	}
	if(w&gt;=740 &amp; w&lt;835){
	  var lift=0.91;
	}
	if(w&gt;=835){
	  var lift=0.93;
	}
	if (imageWidth&gt;w){	
	  byFactor = w / imageWidth;			
	  imageWidth = w;
	  imageHeight = imageHeight * byFactor;
	}
	if (imageHeight&gt;h-adj){
	  byFactor = h / imageHeight;
	  imageWidth = (imageWidth * byFactor);
	  imageHeight = h; 
	}
	   
	var scrWidth = w-adj;
	var scrHeight = (h*lift)-adj;

	if (imageHeight&gt;scrHeight){
  	  imageHeight=imageHeight*lift;
	  imageWidth=imageWidth*lift;
	}

	var posLeft=0;
	var posTop=0;

	if (hugger == &quot;hug image&quot;){
	  if (hugMargin == &quot;&quot;){
	    hugMargin = 0;
	  }
	  var scrHeightTemp = imageHeight - 0 + 2*hugMargin;
	  if (scrHeightTemp &lt; scrHeight) {
		scrHeight = scrHeightTemp;
	  } 
	  var scrWidthTemp = imageWidth - 0 + 2*hugMargin;
	  if (scrWidthTemp &lt; scrWidth) {
		scrWidth = scrWidthTemp;
	  }
	  
	  if (scrHeight&lt;100){scrHeight=100;}
	  if (scrWidth&lt;100){scrWidth=100;}

	  posTop =  ((h-(scrHeight/lift)-adj)/2);
	  posLeft = ((w-(scrWidth)-adj)/2);
 	}

	if (imageHeight &gt; (h*lift)-adj || imageWidth &gt; w-adj){
		imageHeight=imageHeight-adj;
		imageWidth=imageWidth-adj;
	}
	posTop = parseInt(posTop);
	posLeft = parseInt(posLeft);		
	scrWidth = parseInt(scrWidth); 
	scrHeight = parseInt(scrHeight);
	
	var agt=navigator.userAgent.toLowerCase();
	if (agt.indexOf(&quot;opera&quot;) != -1){
	  var args= new Array();
	  args[0]=&#039;parent&#039;;
	  args[1]=imageName;
	  var i ; document.MM_returnValue = false;
	  for (i=0; i&lt;(args.length-1); i+=2) eval(args[i]+&quot;.location=&#039;&quot;+args[i+1]+&quot;&#039;&quot;);
	} else {
	newWindow = window.open(&quot;vwd_justso.htm&quot;,&quot;newWindow&quot;,&quot;width=&quot;+scrWidth+&quot;,height=&quot;+scrHeight+&quot;,left=&quot;+posLeft+&quot;,top=&quot;+posTop);
	newWindow.document.open();
	newWindow.document.write(&#039;&lt;html&gt;&lt;title&gt;&#039;+alt+&#039;&lt;/title&gt;&lt;body leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; bgcolor=&#039;+bgcolor+&#039; onBlur=&quot;self.close()&quot; onClick=&quot;self.close()&quot;&gt;&#039;);  
	newWindow.document.write(&#039;&lt;table width=&#039;+imageWidth+&#039; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; align=&quot;center&quot; height=&#039;+scrHeight+&#039; &gt;&lt;tr&gt;&lt;td&gt;&#039;);
	newWindow.document.write(&#039;&lt;img src=&quot;&#039;+imageName+&#039;&quot; width=&#039;+imageWidth+&#039; height=&#039;+imageHeight+&#039; alt=&quot;Click screen to close&quot; &gt;&#039;); 
	newWindow.document.write(&#039;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;&#039;);
	newWindow.document.close();
	newWindow.focus();
	}
}
//--&gt;
&lt;/script&gt;&lt;p&gt;
&lt;font size=&quot;2&quot; color=&quot;#003399&quot;&gt;&lt;b&gt; This was Chet&amp;#146;s 25th Westfest parade!&lt;br /&gt;
&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;font color=&quot;#5B3D23&quot; size=&quot;1&quot;&gt;September 2, 2006&lt;/font&gt; &lt;/p&gt;
&lt;script language=&quot;JavaScript&quot; src=&quot;/page_scripts/standard.js&quot;&gt;&lt;/script&gt;&lt;table width=&quot;96%&quot; border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;1&quot; bgcolor=&quot;#000000&quot; align=&quot;center&quot;&gt;
&lt;tr bgcolor=&quot;#FFFFFF&quot;&gt;
&lt;td colspan=&quot;3&quot; align=&quot;center&quot;&gt;&lt;font size=&quot;1&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; color=&quot;#000000&quot;&gt;Click on an image to enlarge&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan=&quot;3&quot; bgcolor=&quot;#383B47&quot; align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/edwardsincar.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/edwardsincar_s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/shakinghands.jpg&#039;,&#039;600&#039;,&#039;569&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/shakinghands_s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/chetfans.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/chetfans_s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;top&quot; bgcolor=&quot;#FFFFFF&quot;&gt;
&lt;td align=&quot;center&quot;&gt;
&lt;p style=&quot;text-align: center; font-size: 10px; color: #333333; line-height: 1.3em;&quot;&gt;Chet, Lea Ann and their two sons riding in the annual Westfest Parade on Saturday, Sept. 2nd&lt;/font&gt;&lt;/td&gt;
&lt;td align=&quot;center&quot;&gt;
&lt;p style=&quot;text-align: center; font-size: 10px; color: #333333; line-height: 1.3em;&quot;&gt;Chet meeting with local residents.&lt;/font&gt;&lt;/td&gt;
&lt;td align=&quot;center&quot;&gt;
&lt;p style=&quot;text-align: center; font-size: 10px; color: #333333; line-height: 1.3em;&quot;&gt;Onlookers waved Chet fans all along the parade route.&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/chetdog.jpg&#039;,&#039;564&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/chetdog_s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/laughing.jpg&#039;,&#039;548&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/laughing_s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; valign=&quot;top&quot;&gt;&amp;nbsp; &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan=&quot;3&quot; bgcolor=&quot;#383B47&quot; align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;!--break--&gt;&lt;br /&gt;
&lt;br clear=&quot;left&quot;&gt;&lt;/p&gt;
</description>
 <comments>http://www.chetedwards.com/node/188#comment</comments>
 <category domain="http://www.chetedwards.com/taxonomy/term/18">McLennan County</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/8">Media Center</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/64">On the Campaign Trail</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/63">Photo Galleries</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/68">What&#039;s New</category>
 <pubDate>Thu, 07 Sep 2006 21:11:52 -0700</pubDate>
 <dc:creator>Kat</dc:creator>
 <guid isPermaLink="false">188 at http://www.chetedwards.com</guid>
</item>
<item>
 <title>Photo Gallery: Boot Scootin&#039; &amp; BBQ II</title>
 <link>http://www.chetedwards.com/node/185</link>
 <description>&lt;p&gt;&lt;b&gt;&lt;font size=&quot;2&quot;&gt;1,000 people joined Chet and Lea Ann at the Waco Convention Center on Saturday, August 26th for great BBQ, great live music from Gary P. Nunn and a great time!&lt;/font&gt;&lt;/p&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
function JustSoPicWindow(imageName,imageWidth,imageHeight,alt,bgcolor,hugger,hugMargin) {
// by E Michael Brandt of ValleyWebDesigns.com - Please leave these comments intact.
// version 3.0.4  

	if (bgcolor==&quot;&quot;) {
		bgcolor=&quot;#FFFFFF&quot;;
	}
	var adj=10
	var w = screen.width;
	var h = screen.height;
	var byFactor=1;

	if(w&lt;740){
	  var lift=0.90;
	}
	if(w&gt;=740 &amp; w&lt;835){
	  var lift=0.91;
	}
	if(w&gt;=835){
	  var lift=0.93;
	}
	if (imageWidth&gt;w){	
	  byFactor = w / imageWidth;			
	  imageWidth = w;
	  imageHeight = imageHeight * byFactor;
	}
	if (imageHeight&gt;h-adj){
	  byFactor = h / imageHeight;
	  imageWidth = (imageWidth * byFactor);
	  imageHeight = h; 
	}
	   
	var scrWidth = w-adj;
	var scrHeight = (h*lift)-adj;

	if (imageHeight&gt;scrHeight){
  	  imageHeight=imageHeight*lift;
	  imageWidth=imageWidth*lift;
	}

	var posLeft=0;
	var posTop=0;

	if (hugger == &quot;hug image&quot;){
	  if (hugMargin == &quot;&quot;){
	    hugMargin = 0;
	  }
	  var scrHeightTemp = imageHeight - 0 + 2*hugMargin;
	  if (scrHeightTemp &lt; scrHeight) {
		scrHeight = scrHeightTemp;
	  } 
	  var scrWidthTemp = imageWidth - 0 + 2*hugMargin;
	  if (scrWidthTemp &lt; scrWidth) {
		scrWidth = scrWidthTemp;
	  }
	  
	  if (scrHeight&lt;100){scrHeight=100;}
	  if (scrWidth&lt;100){scrWidth=100;}

	  posTop =  ((h-(scrHeight/lift)-adj)/2);
	  posLeft = ((w-(scrWidth)-adj)/2);
 	}

	if (imageHeight &gt; (h*lift)-adj || imageWidth &gt; w-adj){
		imageHeight=imageHeight-adj;
		imageWidth=imageWidth-adj;
	}
	posTop = parseInt(posTop);
	posLeft = parseInt(posLeft);		
	scrWidth = parseInt(scrWidth); 
	scrHeight = parseInt(scrHeight);
	
	var agt=navigator.userAgent.toLowerCase();
	if (agt.indexOf(&quot;opera&quot;) != -1){
	  var args= new Array();
	  args[0]=&#039;parent&#039;;
	  args[1]=imageName;
	  var i ; document.MM_returnValue = false;
	  for (i=0; i&lt;(args.length-1); i+=2) eval(args[i]+&quot;.location=&#039;&quot;+args[i+1]+&quot;&#039;&quot;);
	} else {
	newWindow = window.open(&quot;/vwd_justso.htm&quot;,&quot;newWindow&quot;,&quot;width=&quot;+scrWidth+&quot;,height=&quot;+scrHeight+&quot;,left=&quot;+posLeft+&quot;,top=&quot;+posTop);
	newWindow.document.open();
	newWindow.document.write(&#039;&lt;html&gt;&lt;title&gt;&#039;+alt+&#039;&lt;/title&gt;&lt;body leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; bgcolor=&#039;+bgcolor+&#039; onBlur=&quot;self.close()&quot; onClick=&quot;self.close()&quot;&gt;&#039;);  
	newWindow.document.write(&#039;&lt;table width=&#039;+imageWidth+&#039; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; align=&quot;center&quot; height=&#039;+scrHeight+&#039; &gt;&lt;tr&gt;&lt;td&gt;&#039;);
	newWindow.document.write(&#039;&lt;img src=&quot;&#039;+imageName+&#039;&quot; width=&#039;+imageWidth+&#039; height=&#039;+imageHeight+&#039; alt=&quot;Click screen to close&quot; &gt;&#039;); 
	newWindow.document.write(&#039;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;&#039;);
	newWindow.document.close();
	newWindow.focus();
	}
}
//--&gt;
&lt;/script&gt;&lt;table border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;1&quot; bgcolor=&quot;#FFFFFF&quot; width=&quot;96%&quot;&gt;
&lt;tr align=&quot;center&quot; bgcolor=&quot;#FFFFFF&quot;&gt;
&lt;td colspan=&quot;3&quot;&gt;&lt;font size=&quot;1&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; color=&quot;#000000&quot;&gt;Click on an image to enlarge&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;3&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; rowspan=&quot;4&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/scootinL.jpg&#039;,&#039;640&#039;,&#039;427&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/scootin.jpg&quot; width=&quot;190&quot; height=&quot;399&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/scootin2.jpg&#039;,&#039;640&#039;,&#039;427&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/scootin2s.jpg&quot; width=&quot;144&quot; height=&quot;96&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/scootin3.jpg&#039;,&#039;640&#039;,&#039;427&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/scootin3s.jpg&quot; width=&quot;144&quot; height=&quot;96&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/scootin1.jpg&#039;,&#039;640&#039;,&#039;427&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/scootin1s.jpg&quot; width=&quot;144&quot; height=&quot;96&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/scootin4.jpg&#039;,&#039;320&#039;,&#039;480&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/scootin4s.jpg&quot; width=&quot;144&quot; height=&quot;96&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/scootin5.jpg&#039;,&#039;640&#039;,&#039;427&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/scootin5s.jpg&quot; width=&quot;144&quot; height=&quot;96&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/scootin6.jpg&#039;,&#039;640&#039;,&#039;427&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/scootin6s.jpg&quot; width=&quot;144&quot; height=&quot;96&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/scootin7.jpg&#039;,&#039;640&#039;,&#039;427&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/scootin7s.jpg&quot; width=&quot;144&quot; height=&quot;96&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/scootin8.jpg&#039;,&#039;640&#039;,&#039;427&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/scootin8s.jpg&quot; width=&quot;144&quot; height=&quot;96&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;3&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;!--break--&gt;&lt;br /&gt;
The crowd included Republicans and Democratic elected officials from across the 17th District. Chet and Lea Ann both spoke and thanked everyone for their show of support, before making way for Gary P. Nunn to take the stage.&lt;/p&gt;
</description>
 <comments>http://www.chetedwards.com/node/185#comment</comments>
 <category domain="http://www.chetedwards.com/taxonomy/term/8">Media Center</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/64">On the Campaign Trail</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/63">Photo Galleries</category>
 <pubDate>Thu, 31 Aug 2006 10:45:30 -0700</pubDate>
 <dc:creator>Kat</dc:creator>
 <guid isPermaLink="false">185 at http://www.chetedwards.com</guid>
</item>
<item>
 <title>U.S Chamber of Commerce and NFIB endorse Chet Edwards</title>
 <link>http://www.chetedwards.com/node/183</link>
 <description>&lt;p&gt;&lt;b&gt;Thursday and Friday, August 24-25, 2006 &amp;#150;&lt;/b&gt;&lt;font color=&quot;#990000&quot;&gt;&lt;b&gt; Chet held press events in Waco, College Station, Cleburne and Granbury announcing U.S Chamber of Commerce and NFIB’s endorsement of his campaign.&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
function JustSoPicWindow(imageName,imageWidth,imageHeight,alt,bgcolor,hugger,hugMargin) {
// by E Michael Brandt of ValleyWebDesigns.com - Please leave these comments intact.
// version 3.0.4  

	if (bgcolor==&quot;&quot;) {
		bgcolor=&quot;#FFFFFF&quot;;
	}
	var adj=10
	var w = screen.width;
	var h = screen.height;
	var byFactor=1;

	if(w&lt;740){
	  var lift=0.90;
	}
	if(w&gt;=740 &amp; w&lt;835){
	  var lift=0.91;
	}
	if(w&gt;=835){
	  var lift=0.93;
	}
	if (imageWidth&gt;w){	
	  byFactor = w / imageWidth;			
	  imageWidth = w;
	  imageHeight = imageHeight * byFactor;
	}
	if (imageHeight&gt;h-adj){
	  byFactor = h / imageHeight;
	  imageWidth = (imageWidth * byFactor);
	  imageHeight = h; 
	}
	   
	var scrWidth = w-adj;
	var scrHeight = (h*lift)-adj;

	if (imageHeight&gt;scrHeight){
  	  imageHeight=imageHeight*lift;
	  imageWidth=imageWidth*lift;
	}

	var posLeft=0;
	var posTop=0;

	if (hugger == &quot;hug image&quot;){
	  if (hugMargin == &quot;&quot;){
	    hugMargin = 0;
	  }
	  var scrHeightTemp = imageHeight - 0 + 2*hugMargin;
	  if (scrHeightTemp &lt; scrHeight) {
		scrHeight = scrHeightTemp;
	  } 
	  var scrWidthTemp = imageWidth - 0 + 2*hugMargin;
	  if (scrWidthTemp &lt; scrWidth) {
		scrWidth = scrWidthTemp;
	  }
	  
	  if (scrHeight&lt;100){scrHeight=100;}
	  if (scrWidth&lt;100){scrWidth=100;}

	  posTop =  ((h-(scrHeight/lift)-adj)/2);
	  posLeft = ((w-(scrWidth)-adj)/2);
 	}

	if (imageHeight &gt; (h*lift)-adj || imageWidth &gt; w-adj){
		imageHeight=imageHeight-adj;
		imageWidth=imageWidth-adj;
	}
	posTop = parseInt(posTop);
	posLeft = parseInt(posLeft);		
	scrWidth = parseInt(scrWidth); 
	scrHeight = parseInt(scrHeight);
	
	var agt=navigator.userAgent.toLowerCase();
	if (agt.indexOf(&quot;opera&quot;) != -1){
	  var args= new Array();
	  args[0]=&#039;parent&#039;;
	  args[1]=imageName;
	  var i ; document.MM_returnValue = false;
	  for (i=0; i&lt;(args.length-1); i+=2) eval(args[i]+&quot;.location=&#039;&quot;+args[i+1]+&quot;&#039;&quot;);
	} else {
	newWindow = window.open(&quot;/vwd_justso.htm&quot;,&quot;newWindow&quot;,&quot;width=&quot;+scrWidth+&quot;,height=&quot;+scrHeight+&quot;,left=&quot;+posLeft+&quot;,top=&quot;+posTop);
	newWindow.document.open();
	newWindow.document.write(&#039;&lt;html&gt;&lt;title&gt;&#039;+alt+&#039;&lt;/title&gt;&lt;body leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; bgcolor=&#039;+bgcolor+&#039; onBlur=&quot;self.close()&quot; onClick=&quot;self.close()&quot;&gt;&#039;);  
	newWindow.document.write(&#039;&lt;table width=&#039;+imageWidth+&#039; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; align=&quot;center&quot; height=&#039;+scrHeight+&#039; &gt;&lt;tr&gt;&lt;td&gt;&#039;);
	newWindow.document.write(&#039;&lt;img src=&quot;&#039;+imageName+&#039;&quot; width=&#039;+imageWidth+&#039; height=&#039;+imageHeight+&#039; alt=&quot;Click screen to close&quot; &gt;&#039;); 
	newWindow.document.write(&#039;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;&#039;);
	newWindow.document.close();
	newWindow.focus();
	}
}
//--&gt;
&lt;/script&gt;&lt;table border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;1&quot; bgcolor=&quot;#000000&quot; align=&quot;center&quot;&gt;
&lt;tr align=&quot;center&quot; bgcolor=&quot;#FFFFFF&quot;&gt;
&lt;td colspan=&quot;2&quot;&gt;&lt;font size=&quot;1&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; color=&quot;#000000&quot;&gt;Click on an image to enlarge&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;2&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/Cleburne_Chamber_endorse.jpg&#039;,&#039;800&#039;,&#039;522&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/Cleburne_Chamber_endorse.jpg&quot; width=&quot;164&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; rowspan=&quot;2&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/IMG_0609.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/IMG_0609s.jpg&quot; width=&quot;165&quot; height=&quot;214&quot; &gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/Granbury_Chamber_endorse.jpg&#039;,&#039;800&#039;,&#039;522&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/Granbury_Chamber_endorse.jpg&quot; width=&quot;164&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;2&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;br&gt;&lt;br /&gt;
&lt;!--break--&gt;&lt;/p&gt;
</description>
 <comments>http://www.chetedwards.com/node/183#comment</comments>
 <category domain="http://www.chetedwards.com/taxonomy/term/52">What&#039;s New</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/71">Endorsements</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/64">On the Campaign Trail</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/63">Photo Galleries</category>
 <pubDate>Sun, 27 Aug 2006 22:09:03 -0700</pubDate>
 <dc:creator>Kat</dc:creator>
 <guid isPermaLink="false">183 at http://www.chetedwards.com</guid>
</item>
<item>
 <title>Independence Day Around the 17th District</title>
 <link>http://www.chetedwards.com/node/162</link>
 <description>&lt;p&gt;&lt;b&gt;Saturday, July 1, 2006 &amp;#150;&lt;/b&gt;&lt;font color=&quot;#990000&quot;&gt;&lt;b&gt; Glen Rose Independence Day Parade &lt;/p&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
function JustSoPicWindow(imageName,imageWidth,imageHeight,alt,bgcolor,hugger,hugMargin) {
// by E Michael Brandt of ValleyWebDesigns.com - Please leave these comments intact.
// version 3.0.4  

	if (bgcolor==&quot;&quot;) {
		bgcolor=&quot;#FFFFFF&quot;;
	}
	var adj=10
	var w = screen.width;
	var h = screen.height;
	var byFactor=1;

	if(w&lt;740){
	  var lift=0.90;
	}
	if(w&gt;=740 &amp; w&lt;835){
	  var lift=0.91;
	}
	if(w&gt;=835){
	  var lift=0.93;
	}
	if (imageWidth&gt;w){	
	  byFactor = w / imageWidth;			
	  imageWidth = w;
	  imageHeight = imageHeight * byFactor;
	}
	if (imageHeight&gt;h-adj){
	  byFactor = h / imageHeight;
	  imageWidth = (imageWidth * byFactor);
	  imageHeight = h; 
	}
	   
	var scrWidth = w-adj;
	var scrHeight = (h*lift)-adj;

	if (imageHeight&gt;scrHeight){
  	  imageHeight=imageHeight*lift;
	  imageWidth=imageWidth*lift;
	}

	var posLeft=0;
	var posTop=0;

	if (hugger == &quot;hug image&quot;){
	  if (hugMargin == &quot;&quot;){
	    hugMargin = 0;
	  }
	  var scrHeightTemp = imageHeight - 0 + 2*hugMargin;
	  if (scrHeightTemp &lt; scrHeight) {
		scrHeight = scrHeightTemp;
	  } 
	  var scrWidthTemp = imageWidth - 0 + 2*hugMargin;
	  if (scrWidthTemp &lt; scrWidth) {
		scrWidth = scrWidthTemp;
	  }
	  
	  if (scrHeight&lt;100){scrHeight=100;}
	  if (scrWidth&lt;100){scrWidth=100;}

	  posTop =  ((h-(scrHeight/lift)-adj)/2);
	  posLeft = ((w-(scrWidth)-adj)/2);
 	}

	if (imageHeight &gt; (h*lift)-adj || imageWidth &gt; w-adj){
		imageHeight=imageHeight-adj;
		imageWidth=imageWidth-adj;
	}
	posTop = parseInt(posTop);
	posLeft = parseInt(posLeft);		
	scrWidth = parseInt(scrWidth); 
	scrHeight = parseInt(scrHeight);
	
	var agt=navigator.userAgent.toLowerCase();
	if (agt.indexOf(&quot;opera&quot;) != -1){
	  var args= new Array();
	  args[0]=&#039;parent&#039;;
	  args[1]=imageName;
	  var i ; document.MM_returnValue = false;
	  for (i=0; i&lt;(args.length-1); i+=2) eval(args[i]+&quot;.location=&#039;&quot;+args[i+1]+&quot;&#039;&quot;);
	} else {
	newWindow = window.open(&quot;/vwd_justso.htm&quot;,&quot;newWindow&quot;,&quot;width=&quot;+scrWidth+&quot;,height=&quot;+scrHeight+&quot;,left=&quot;+posLeft+&quot;,top=&quot;+posTop);
	newWindow.document.open();
	newWindow.document.write(&#039;&lt;html&gt;&lt;title&gt;&#039;+alt+&#039;&lt;/title&gt;&lt;body leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; bgcolor=&#039;+bgcolor+&#039; onBlur=&quot;self.close()&quot; onClick=&quot;self.close()&quot;&gt;&#039;);  
	newWindow.document.write(&#039;&lt;table width=&#039;+imageWidth+&#039; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; align=&quot;center&quot; height=&#039;+scrHeight+&#039; &gt;&lt;tr&gt;&lt;td&gt;&#039;);
	newWindow.document.write(&#039;&lt;img src=&quot;&#039;+imageName+&#039;&quot; width=&#039;+imageWidth+&#039; height=&#039;+imageHeight+&#039; alt=&quot;Click screen to close&quot; &gt;&#039;); 
	newWindow.document.write(&#039;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;&#039;);
	newWindow.document.close();
	newWindow.focus();
	}
}
//--&gt;
&lt;/script&gt;&lt;p&gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;table border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;1&quot; bgcolor=&quot;#000000&quot; align=&quot;center&quot;&gt;
&lt;tr align=&quot;center&quot; bgcolor=&quot;#FFFFFF&quot;&gt;
&lt;td colspan=&quot;2&quot;&gt;&lt;font size=&quot;1&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; color=&quot;#000000&quot;&gt;Click on an image to enlarge&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;2&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/glenrose1.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/glenrose1_s.jpg&quot; width=&quot;150&quot; height=&quot;113&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/glenrose2.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/glenrose2_s.jpg&quot; width=&quot;150&quot; height=&quot;113&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;2&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;br clear=&quot;left&quot;&gt;&lt;br /&gt;
&lt;b&gt;Tuesday, July 4, 2006 &amp;#150;&lt;/b&gt;&lt;font color=&quot;#990000&quot;&gt;&lt;b&gt; Granbury Independence Day Parade &lt;/b&gt;&lt;/font&gt;&lt;/p&gt;
&lt;table border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;1&quot; bgcolor=&quot;#000000&quot; align=&quot;center&quot;&gt;
&lt;tr align=&quot;center&quot; bgcolor=&quot;#FFFFFF&quot;&gt;
&lt;td colspan=&quot;2&quot;&gt;&lt;font size=&quot;1&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; color=&quot;#000000&quot;&gt;Click on an image to enlarge&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;2&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/granbury061.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/granbury061_s.jpg&quot; width=&quot;150&quot; height=&quot;113&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/granbury062.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/granbury062_s.jpg&quot; width=&quot;150&quot; height=&quot;113&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/granbury063.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/granbury063_s.jpg&quot; width=&quot;150&quot; height=&quot;113&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/granbury064.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/granbury064_s.jpg&quot; width=&quot;150&quot; height=&quot;113&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;2&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;!--break--&gt;&lt;/p&gt;
</description>
 <comments>http://www.chetedwards.com/node/162#comment</comments>
 <category domain="http://www.chetedwards.com/taxonomy/term/52">What&#039;s New</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/41">Hood County</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/8">Media Center</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/63">Photo Galleries</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/57">Somervell County</category>
 <pubDate>Thu, 06 Jul 2006 22:15:00 -0700</pubDate>
 <dc:creator>Kat</dc:creator>
 <guid isPermaLink="false">162 at http://www.chetedwards.com</guid>
</item>
<item>
 <title>6/17/06: Cleburne Juneteenth Parade</title>
 <link>http://www.chetedwards.com/node/159</link>
 <description>&lt;p&gt;&lt;font size=&quot;2&quot; color=&quot;#003399&quot;&gt;&lt;b&gt; Cleburne Juneteenth Parade&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;font color=&quot;#5B3D23&quot; size=&quot;1&quot;&gt;June 17, 2006&lt;/font&gt; &lt;/p&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
function JustSoPicWindow(imageName,imageWidth,imageHeight,alt,bgcolor,hugger,hugMargin) {
// by E Michael Brandt of ValleyWebDesigns.com - Please leave these comments intact.
// version 3.0.4  

	if (bgcolor==&quot;&quot;) {
		bgcolor=&quot;#FFFFFF&quot;;
	}
	var adj=10
	var w = screen.width;
	var h = screen.height;
	var byFactor=1;

	if(w&lt;740){
	  var lift=0.90;
	}
	if(w&gt;=740 &amp; w&lt;835){
	  var lift=0.91;
	}
	if(w&gt;=835){
	  var lift=0.93;
	}
	if (imageWidth&gt;w){	
	  byFactor = w / imageWidth;			
	  imageWidth = w;
	  imageHeight = imageHeight * byFactor;
	}
	if (imageHeight&gt;h-adj){
	  byFactor = h / imageHeight;
	  imageWidth = (imageWidth * byFactor);
	  imageHeight = h; 
	}
	   
	var scrWidth = w-adj;
	var scrHeight = (h*lift)-adj;

	if (imageHeight&gt;scrHeight){
  	  imageHeight=imageHeight*lift;
	  imageWidth=imageWidth*lift;
	}

	var posLeft=0;
	var posTop=0;

	if (hugger == &quot;hug image&quot;){
	  if (hugMargin == &quot;&quot;){
	    hugMargin = 0;
	  }
	  var scrHeightTemp = imageHeight - 0 + 2*hugMargin;
	  if (scrHeightTemp &lt; scrHeight) {
		scrHeight = scrHeightTemp;
	  } 
	  var scrWidthTemp = imageWidth - 0 + 2*hugMargin;
	  if (scrWidthTemp &lt; scrWidth) {
		scrWidth = scrWidthTemp;
	  }
	  
	  if (scrHeight&lt;100){scrHeight=100;}
	  if (scrWidth&lt;100){scrWidth=100;}

	  posTop =  ((h-(scrHeight/lift)-adj)/2);
	  posLeft = ((w-(scrWidth)-adj)/2);
 	}

	if (imageHeight &gt; (h*lift)-adj || imageWidth &gt; w-adj){
		imageHeight=imageHeight-adj;
		imageWidth=imageWidth-adj;
	}
	posTop = parseInt(posTop);
	posLeft = parseInt(posLeft);		
	scrWidth = parseInt(scrWidth); 
	scrHeight = parseInt(scrHeight);
	
	var agt=navigator.userAgent.toLowerCase();
	if (agt.indexOf(&quot;opera&quot;) != -1){
	  var args= new Array();
	  args[0]=&#039;parent&#039;;
	  args[1]=imageName;
	  var i ; document.MM_returnValue = false;
	  for (i=0; i&lt;(args.length-1); i+=2) eval(args[i]+&quot;.location=&#039;&quot;+args[i+1]+&quot;&#039;&quot;);
	} else {
	newWindow = window.open(&quot;/vwd_justso.htm&quot;,&quot;newWindow&quot;,&quot;width=&quot;+scrWidth+&quot;,height=&quot;+scrHeight+&quot;,left=&quot;+posLeft+&quot;,top=&quot;+posTop);
	newWindow.document.open();
	newWindow.document.write(&#039;&lt;html&gt;&lt;title&gt;&#039;+alt+&#039;&lt;/title&gt;&lt;body leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; bgcolor=&#039;+bgcolor+&#039; onBlur=&quot;self.close()&quot; onClick=&quot;self.close()&quot;&gt;&#039;);  
	newWindow.document.write(&#039;&lt;table width=&#039;+imageWidth+&#039; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; align=&quot;center&quot; height=&#039;+scrHeight+&#039; &gt;&lt;tr&gt;&lt;td&gt;&#039;);
	newWindow.document.write(&#039;&lt;img src=&quot;&#039;+imageName+&#039;&quot; width=&#039;+imageWidth+&#039; height=&#039;+imageHeight+&#039; alt=&quot;Click screen to close&quot; &gt;&#039;); 
	newWindow.document.write(&#039;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;&#039;);
	newWindow.document.close();
	newWindow.focus();
	}
}
//--&gt;
&lt;/script&gt;&lt;div align=&quot;center&quot;&gt;
&lt;font size=&quot;1&quot;&gt;Click photos to enlarge&lt;/font&gt;&lt;br /&gt;
&lt;a href=&quot;javascript:;&quot;&gt;&lt;img src=&quot;/images/gallery/juneteenth1_s.jpg&quot; width=&quot;230&quot; height=&quot;206&quot; align=&quot;absmiddle&quot; border=&quot;0&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/junteenth1.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;/a&gt;&lt;a href=&quot;javascript:;&quot;&gt;&lt;img src=&quot;/images/gallery/juneteenth2_s.jpg&quot; width=&quot;230&quot; height=&quot;206&quot; align=&quot;absmiddle&quot; border=&quot;0&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/juneteenth2.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;/a&gt; &lt;br&gt;&lt;br /&gt;
    &lt;b&gt;Chet visits with Cleburne residents &amp;#150; including a young supporter - after the Juneteenth parade on Saturday, June 17. &lt;/b&gt;&lt;/div&gt;
&lt;p&gt;&lt;!--break--&gt;&lt;/p&gt;
</description>
 <comments>http://www.chetedwards.com/node/159#comment</comments>
 <category domain="http://www.chetedwards.com/taxonomy/term/52">What&#039;s New</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/21">Johnson County</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/8">Media Center</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/64">On the Campaign Trail</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/63">Photo Galleries</category>
 <pubDate>Wed, 21 Jun 2006 09:02:19 -0700</pubDate>
 <dc:creator>Kat</dc:creator>
 <guid isPermaLink="false">159 at http://www.chetedwards.com</guid>
</item>
<item>
 <title>Fundraisers in Waco and Johnson County</title>
 <link>http://www.chetedwards.com/node/147</link>
 <description>&lt;p&gt;&lt;font size=&quot;2&quot; color=&quot;#003399&quot;&gt;&lt;b&gt;Fundraisers in Waco and Johnson County&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;font color=&quot;#5B3D23&quot; size=&quot;1&quot;&gt;May 30- June 1 , 2006&lt;/font&gt; &lt;/p&gt;
&lt;script language=&quot;JavaScript&quot; src=&quot;/page_scripts/standard.js&quot;&gt;&lt;/script&gt;&lt;table width=&quot;450&quot; border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;1&quot; bgcolor=&quot;#000000&quot; align=&quot;center&quot;&gt;
&lt;tr bgcolor=&quot;#FFFFFF&quot;&gt;
&lt;td colspan=&quot;3&quot; align=&quot;center&quot;&gt;&lt;font size=&quot;1&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; color=&quot;#000000&quot;&gt;Click on an image to enlarge&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan=&quot;3&quot; bgcolor=&quot;#383B47&quot; align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;bottom&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot; colspan=&quot;3&quot;&gt;&lt;b&gt;&lt;font size=&quot;1&quot;&gt;Waco Fundraiser - &lt;/font&gt;&lt;/b&gt;&lt;font size=&quot;1&quot;&gt;Home of Lisa and Larry Jaynes, June 1, 2006&lt;img src=&quot;/images/dwn.gif&quot; width=&quot;24&quot; height=&quot;14&quot;&gt;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/wacofund1.jpg&#039;,&#039;640&#039;,&#039;480&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/wacofund1s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/wacofund2.jpg&#039;,&#039;640&#039;,&#039;427&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/wacofund2s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/wacofund3.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/wacofund3s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;top&quot; bgcolor=&quot;#CCCC99&quot;&gt;
&lt;td align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/johnson_co_fund2.jpg&#039;,&#039;900&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/johnson_co_fund2s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/johnson_co_fund1.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/johnson_co_fund1s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; valign=&quot;top&quot;&gt;
&lt;font size=&quot;1&quot;&gt;&lt;b&gt;&lt;img src=&quot;/images/leftbttri.jpg&quot; width=&quot;14&quot; height=&quot;24&quot; hspace=&quot;10&quot; align=&quot;left&quot;&gt;Johnson County Fundraiser&lt;/b&gt;&lt;/font&gt;   &lt;/p&gt;
&lt;p&gt;&lt;font size=&quot;1&quot;&gt;George Marti&amp;#146;s lake house,&lt;br /&gt;
May 30, 2006&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan=&quot;3&quot; bgcolor=&quot;#383B47&quot; align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;!--break--&gt;&lt;br /&gt;
&lt;br clear=&quot;left&quot;&gt;&lt;/p&gt;
</description>
 <comments>http://www.chetedwards.com/node/147#comment</comments>
 <category domain="http://www.chetedwards.com/taxonomy/term/52">What&#039;s New</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/8">Media Center</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/64">On the Campaign Trail</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/63">Photo Galleries</category>
 <pubDate>Wed, 07 Jun 2006 21:24:58 -0700</pubDate>
 <dc:creator>Kat</dc:creator>
 <guid isPermaLink="false">147 at http://www.chetedwards.com</guid>
</item>
<item>
 <title>6/3/06: Chet Opens Campaign Offices - Cleburne &amp; Bryan</title>
 <link>http://www.chetedwards.com/node/140</link>
 <description>&lt;p&gt;&lt;font color=&quot;#5B3D23&quot; size=&quot;1&quot;&gt;June 6, 2006&lt;/font&gt;&lt;br /&gt;
&lt;font size=&quot;2&quot; color=&quot;#003399&quot;&gt;&lt;b&gt;Edwards opens new Cleburne campaign office&lt;/b&gt;&lt;/font&gt; &lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/images/ctr1.jpg&quot; width=&quot;330&quot; height=&quot;64&quot; align=&quot;right&quot; border=&quot;0&quot; &gt;&lt;/p&gt;
&lt;script language=&quot;JavaScript&quot; src=&quot;/page_scripts/standard.js&quot;&gt;&lt;/script&gt;&lt;p&gt;&lt;b&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;MM_openBrWindow(&#039;http://www.cleburnetimesreview.com&#039;,&#039;Link&#039;,&#039;status=yes,scrollbars=yes,resizable=yes,width=600,height=500&#039;)&quot; onMouseOver=&quot;MM_displayStatusMsg(&#039;Visit the Cleburne Times Review online&#039;);return document.MM_returnValue&quot;&gt;Cleburne Times Review&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
By &lt;b&gt;Thomas Phillips&lt;/b&gt; |&lt;font size=&quot;1&quot;&gt; News Editor | CNHI News Service &lt;/font&gt;  &lt;/p&gt;
&lt;p&gt;Four mayors and about 50 other invited supporters helped U.S. Rep. Chet Edwards, D-Waco, open a new campaign office here Saturday morning.&lt;/p&gt;
&lt;p&gt;The office is a suite at 904 N. Main St. On Saturday it was filled with red-and-white campaign signs and bumper stickers, with several signs planted in front of the building.&lt;/p&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
function JustSoPicWindow(imageName,imageWidth,imageHeight,alt,bgcolor,hugger,hugMargin) {
// by E Michael Brandt of ValleyWebDesigns.com - Please leave these comments intact.
// version 3.0.4  

	if (bgcolor==&quot;&quot;) {
		bgcolor=&quot;#FFFFFF&quot;;
	}
	var adj=10
	var w = screen.width;
	var h = screen.height;
	var byFactor=1;

	if(w&lt;740){
	  var lift=0.90;
	}
	if(w&gt;=740 &amp; w&lt;835){
	  var lift=0.91;
	}
	if(w&gt;=835){
	  var lift=0.93;
	}
	if (imageWidth&gt;w){	
	  byFactor = w / imageWidth;			
	  imageWidth = w;
	  imageHeight = imageHeight * byFactor;
	}
	if (imageHeight&gt;h-adj){
	  byFactor = h / imageHeight;
	  imageWidth = (imageWidth * byFactor);
	  imageHeight = h; 
	}
	   
	var scrWidth = w-adj;
	var scrHeight = (h*lift)-adj;

	if (imageHeight&gt;scrHeight){
  	  imageHeight=imageHeight*lift;
	  imageWidth=imageWidth*lift;
	}

	var posLeft=0;
	var posTop=0;

	if (hugger == &quot;hug image&quot;){
	  if (hugMargin == &quot;&quot;){
	    hugMargin = 0;
	  }
	  var scrHeightTemp = imageHeight - 0 + 2*hugMargin;
	  if (scrHeightTemp &lt; scrHeight) {
		scrHeight = scrHeightTemp;
	  } 
	  var scrWidthTemp = imageWidth - 0 + 2*hugMargin;
	  if (scrWidthTemp &lt; scrWidth) {
		scrWidth = scrWidthTemp;
	  }
	  
	  if (scrHeight&lt;100){scrHeight=100;}
	  if (scrWidth&lt;100){scrWidth=100;}

	  posTop =  ((h-(scrHeight/lift)-adj)/2);
	  posLeft = ((w-(scrWidth)-adj)/2);
 	}

	if (imageHeight &gt; (h*lift)-adj || imageWidth &gt; w-adj){
		imageHeight=imageHeight-adj;
		imageWidth=imageWidth-adj;
	}
	posTop = parseInt(posTop);
	posLeft = parseInt(posLeft);		
	scrWidth = parseInt(scrWidth); 
	scrHeight = parseInt(scrHeight);
	
	var agt=navigator.userAgent.toLowerCase();
	if (agt.indexOf(&quot;opera&quot;) != -1){
	  var args= new Array();
	  args[0]=&#039;parent&#039;;
	  args[1]=imageName;
	  var i ; document.MM_returnValue = false;
	  for (i=0; i&lt;(args.length-1); i+=2) eval(args[i]+&quot;.location=&#039;&quot;+args[i+1]+&quot;&#039;&quot;);
	} else {
	newWindow = window.open(&quot;/vwd_justso.htm&quot;,&quot;newWindow&quot;,&quot;width=&quot;+scrWidth+&quot;,height=&quot;+scrHeight+&quot;,left=&quot;+posLeft+&quot;,top=&quot;+posTop);
	newWindow.document.open();
	newWindow.document.write(&#039;&lt;html&gt;&lt;title&gt;&#039;+alt+&#039;&lt;/title&gt;&lt;body leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; bgcolor=&#039;+bgcolor+&#039; onBlur=&quot;self.close()&quot; onClick=&quot;self.close()&quot;&gt;&#039;);  
	newWindow.document.write(&#039;&lt;table width=&#039;+imageWidth+&#039; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; align=&quot;center&quot; height=&#039;+scrHeight+&#039; &gt;&lt;tr&gt;&lt;td&gt;&#039;);
	newWindow.document.write(&#039;&lt;img src=&quot;&#039;+imageName+&#039;&quot; width=&#039;+imageWidth+&#039; height=&#039;+imageHeight+&#039; alt=&quot;Click screen to close&quot; &gt;&#039;); 
	newWindow.document.write(&#039;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;&#039;);
	newWindow.document.close();
	newWindow.focus();
	}
}
//--&gt;
&lt;/script&gt;&lt;table width=&quot;450&quot; border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;1&quot; bgcolor=&quot;#000000&quot; align=&quot;center&quot;&gt;
&lt;tr bgcolor=&quot;#FFFFFF&quot;&gt;
&lt;td colspan=&quot;3&quot; align=&quot;center&quot;&gt;&lt;font size=&quot;1&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; color=&quot;#000000&quot;&gt;Click on an image to enlarge&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan=&quot;3&quot; bgcolor=&quot;#383B47&quot; align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/cleburneHQ1.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/cleburneHQ1_s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; colspan=&quot;2&quot; valign=&quot;middle&quot;&gt;&lt;font size=&quot;1&quot;&gt;On Saturday, June 3rd, about 100 Chet Edwards supporters &amp;#150; Democrats, Republicans &amp;amp; Independents &amp;#150; turned out to help Chet officially open his&lt;b&gt; 2006 North Texas Campaign&lt;/b&gt; office in &lt;b&gt;Cleburne&lt;/b&gt;&lt;/font&gt;. &lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/cleburneHQ2.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/cleburneHQ2_s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/cleburneHQ3.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/cleburneHQ3_s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/cleburneHQ4.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/cleburneHQ4_s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;top&quot; bgcolor=&quot;#CCCC99&quot;&gt;
&lt;td align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/bryanHQ1.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/bryanHQ1_s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;center&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/bryanHQ2.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/bryanHQ2_s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot; valign=&quot;middle&quot;&gt;&lt;font size=&quot;1&quot;&gt;On Saturday, June 3rd, a bipartisan crowd of over 150 supporters turned out to help Chet open his 2006 &lt;b&gt;Brazos County campaign office&lt;/b&gt;.&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan=&quot;3&quot; bgcolor=&quot;#383B47&quot; align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;br clear=&quot;left&quot;&gt;&lt;/p&gt;
&lt;p&gt;Edwards spoke at the event, thanking his supporters and reaffirming his dedication to Johnson County. He mentioned his local congressional office in downtown Cleburne, with Chris Kelly serving as his local representative, and said having the office and the new campaign office have proven his dedication.&lt;/p&gt;
&lt;p&gt;“We’re here today to say I think we’ve kept that commitment,” Edwards said.&lt;br /&gt;
&lt;!--break--&gt;&lt;br /&gt;
The mayors of Cleburne, Burleson, Cross Timber and DeCordova Bend voiced support for the seven-term incumbent, who faces West resident Van Taylor in the Nov. 7 election.&lt;/p&gt;
&lt;p&gt;“I’m pleased and very grateful for what he’s done,” Cross Timber Mayor Wava McCullough said.&lt;/p&gt;
&lt;p&gt;Cleburne Mayor Ted Reynolds recalled when he, McCullough and Burleson Mayor Ken Shetter endorsed Edwards two years ago.&lt;/p&gt;
&lt;p&gt;“We did the right thing, and the last two years have proven that,” Reynolds said.&lt;/p&gt;
&lt;p&gt;Shetter has endorsed Edwards again this year.&lt;/p&gt;
&lt;p&gt;“I can’t believe it’s been two years since we did this last,” Shetter said.&lt;/p&gt;
&lt;p&gt;County Commissioner R.C. McFall, a Democrat, also voiced his support for Edwards. &lt;/p&gt;
&lt;p&gt;“To me, Chet Edwards has been a giver,” McFall said.&lt;/p&gt;
&lt;p&gt;Edwards also used the celebration to ask for more support. He asked the guests to put his bumper stickers on their vehicles.&lt;/p&gt;
&lt;p&gt;“One thing I would ask you,” Edwards said, “please drive politely between now and Nov. 7.”&lt;/p&gt;
&lt;p&gt;Taylor campaign manager Mike Spellings said Taylor’s campaign uses the county’s Republican Party Headquarters, on South Main Street, for its area base of operations. Sarah Rozier works solely for the Taylor campaign from that office.&lt;/p&gt;
</description>
 <comments>http://www.chetedwards.com/node/140#comment</comments>
 <category domain="http://www.chetedwards.com/taxonomy/term/52">What&#039;s New</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/2">In the News</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/8">Media Center</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/64">On the Campaign Trail</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/63">Photo Galleries</category>
 <pubDate>Mon, 05 Jun 2006 23:08:39 -0700</pubDate>
 <dc:creator>Kat</dc:creator>
 <guid isPermaLink="false">140 at http://www.chetedwards.com</guid>
</item>
<item>
 <title>5/6/06 -  Chet Edwards attends Cinco de Mayo @ Mission Waco</title>
 <link>http://www.chetedwards.com/node/117</link>
 <description>&lt;p&gt;&lt;font color=&quot;#003399&quot; size=&quot;2&quot;&gt;&lt;b&gt;May 5, 2006: Chet Edwards attends Cinco de Mayo @ Mission Waco&lt;/b&gt;&lt;/font&gt; &lt;/p&gt;
&lt;p&gt;On May 5, 2006, Congressman Edwards celebrated Cinco de Mayo with Mission Waco with dancing, food and music.&lt;/p&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
function JustSoPicWindow(imageName,imageWidth,imageHeight,alt,bgcolor,hugger,hugMargin) {
// by E Michael Brandt of ValleyWebDesigns.com - Please leave these comments intact.
// version 3.0.4  

	if (bgcolor==&quot;&quot;) {
		bgcolor=&quot;#FFFFFF&quot;;
	}
	var adj=10
	var w = screen.width;
	var h = screen.height;
	var byFactor=1;

	if(w&lt;740){
	  var lift=0.90;
	}
	if(w&gt;=740 &amp; w&lt;835){
	  var lift=0.91;
	}
	if(w&gt;=835){
	  var lift=0.93;
	}
	if (imageWidth&gt;w){	
	  byFactor = w / imageWidth;			
	  imageWidth = w;
	  imageHeight = imageHeight * byFactor;
	}
	if (imageHeight&gt;h-adj){
	  byFactor = h / imageHeight;
	  imageWidth = (imageWidth * byFactor);
	  imageHeight = h; 
	}
	   
	var scrWidth = w-adj;
	var scrHeight = (h*lift)-adj;

	if (imageHeight&gt;scrHeight){
  	  imageHeight=imageHeight*lift;
	  imageWidth=imageWidth*lift;
	}

	var posLeft=0;
	var posTop=0;

	if (hugger == &quot;hug image&quot;){
	  if (hugMargin == &quot;&quot;){
	    hugMargin = 0;
	  }
	  var scrHeightTemp = imageHeight - 0 + 2*hugMargin;
	  if (scrHeightTemp &lt; scrHeight) {
		scrHeight = scrHeightTemp;
	  } 
	  var scrWidthTemp = imageWidth - 0 + 2*hugMargin;
	  if (scrWidthTemp &lt; scrWidth) {
		scrWidth = scrWidthTemp;
	  }
	  
	  if (scrHeight&lt;100){scrHeight=100;}
	  if (scrWidth&lt;100){scrWidth=100;}

	  posTop =  ((h-(scrHeight/lift)-adj)/2);
	  posLeft = ((w-(scrWidth)-adj)/2);
 	}

	if (imageHeight &gt; (h*lift)-adj || imageWidth &gt; w-adj){
		imageHeight=imageHeight-adj;
		imageWidth=imageWidth-adj;
	}
	posTop = parseInt(posTop);
	posLeft = parseInt(posLeft);		
	scrWidth = parseInt(scrWidth); 
	scrHeight = parseInt(scrHeight);
	
	var agt=navigator.userAgent.toLowerCase();
	if (agt.indexOf(&quot;opera&quot;) != -1){
	  var args= new Array();
	  args[0]=&#039;parent&#039;;
	  args[1]=imageName;
	  var i ; document.MM_returnValue = false;
	  for (i=0; i&lt;(args.length-1); i+=2) eval(args[i]+&quot;.location=&#039;&quot;+args[i+1]+&quot;&#039;&quot;);
	} else {
	newWindow = window.open(&quot;/vwd_justso.htm&quot;,&quot;newWindow&quot;,&quot;width=&quot;+scrWidth+&quot;,height=&quot;+scrHeight+&quot;,left=&quot;+posLeft+&quot;,top=&quot;+posTop);
	newWindow.document.open();
	newWindow.document.write(&#039;&lt;html&gt;&lt;title&gt;&#039;+alt+&#039;&lt;/title&gt;&lt;body leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; bgcolor=&#039;+bgcolor+&#039; onBlur=&quot;self.close()&quot; onClick=&quot;self.close()&quot;&gt;&#039;);  
	newWindow.document.write(&#039;&lt;table width=&#039;+imageWidth+&#039; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; align=&quot;center&quot; height=&#039;+scrHeight+&#039; &gt;&lt;tr&gt;&lt;td&gt;&#039;);
	newWindow.document.write(&#039;&lt;img src=&quot;&#039;+imageName+&#039;&quot; width=&#039;+imageWidth+&#039; height=&#039;+imageHeight+&#039; alt=&quot;Click screen to close&quot; &gt;&#039;); 
	newWindow.document.write(&#039;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;&#039;);
	newWindow.document.close();
	newWindow.focus();
	}
}
//--&gt;
&lt;/script&gt;&lt;table border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;1&quot; bgcolor=&quot;#000000&quot; align=&quot;center&quot;&gt;
&lt;tr align=&quot;center&quot; bgcolor=&quot;#FFFFFF&quot;&gt;
&lt;td colspan=&quot;2&quot;&gt;&lt;font size=&quot;1&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; color=&quot;#000000&quot;&gt;Click on an image to enlarge&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;2&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/cincodemayo1.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/cincodemayo1s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/cincodemayo2.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/cincodemayo2s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/cincodemayo2.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/cincodemayo3s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/ROTC_Cincodemayo.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/ROTC_Cincodemayo1.jpg&quot; width=&quot;167&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;2&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;br clear=&quot;left&quot;&gt;&lt;br /&gt;
&lt;!--break--&gt;&lt;/p&gt;
</description>
 <comments>http://www.chetedwards.com/node/117#comment</comments>
 <category domain="http://www.chetedwards.com/taxonomy/term/18">McLennan County</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/64">On the Campaign Trail</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/63">Photo Galleries</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/37">Waco</category>
 <pubDate>Fri, 02 Jun 2006 15:56:19 -0700</pubDate>
 <dc:creator>Kat</dc:creator>
 <guid isPermaLink="false">117 at http://www.chetedwards.com</guid>
</item>
<item>
 <title>Photo Galleries</title>
 <link>http://www.chetedwards.com/node/105</link>
 <description>&lt;p&gt;&lt;font color=&quot;#003399&quot; size=&quot;+1&quot;&gt;&lt;b&gt;Photo Gallery II &lt;/b&gt;&lt;/font&gt;&lt;/p&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
function JustSoPicWindow(imageName,imageWidth,imageHeight,alt,bgcolor,hugger,hugMargin) {
// by E Michael Brandt of ValleyWebDesigns.com - Please leave these comments intact.
// version 3.0.4  

	if (bgcolor==&quot;&quot;) {
		bgcolor=&quot;#FFFFFF&quot;;
	}
	var adj=10
	var w = screen.width;
	var h = screen.height;
	var byFactor=1;

	if(w&lt;740){
	  var lift=0.90;
	}
	if(w&gt;=740 &amp; w&lt;835){
	  var lift=0.91;
	}
	if(w&gt;=835){
	  var lift=0.93;
	}
	if (imageWidth&gt;w){	
	  byFactor = w / imageWidth;			
	  imageWidth = w;
	  imageHeight = imageHeight * byFactor;
	}
	if (imageHeight&gt;h-adj){
	  byFactor = h / imageHeight;
	  imageWidth = (imageWidth * byFactor);
	  imageHeight = h; 
	}
	   
	var scrWidth = w-adj;
	var scrHeight = (h*lift)-adj;

	if (imageHeight&gt;scrHeight){
  	  imageHeight=imageHeight*lift;
	  imageWidth=imageWidth*lift;
	}

	var posLeft=0;
	var posTop=0;

	if (hugger == &quot;hug image&quot;){
	  if (hugMargin == &quot;&quot;){
	    hugMargin = 0;
	  }
	  var scrHeightTemp = imageHeight - 0 + 2*hugMargin;
	  if (scrHeightTemp &lt; scrHeight) {
		scrHeight = scrHeightTemp;
	  } 
	  var scrWidthTemp = imageWidth - 0 + 2*hugMargin;
	  if (scrWidthTemp &lt; scrWidth) {
		scrWidth = scrWidthTemp;
	  }
	  
	  if (scrHeight&lt;100){scrHeight=100;}
	  if (scrWidth&lt;100){scrWidth=100;}

	  posTop =  ((h-(scrHeight/lift)-adj)/2);
	  posLeft = ((w-(scrWidth)-adj)/2);
 	}

	if (imageHeight &gt; (h*lift)-adj || imageWidth &gt; w-adj){
		imageHeight=imageHeight-adj;
		imageWidth=imageWidth-adj;
	}
	posTop = parseInt(posTop);
	posLeft = parseInt(posLeft);		
	scrWidth = parseInt(scrWidth); 
	scrHeight = parseInt(scrHeight);
	
	var agt=navigator.userAgent.toLowerCase();
	if (agt.indexOf(&quot;opera&quot;) != -1){
	  var args= new Array();
	  args[0]=&#039;parent&#039;;
	  args[1]=imageName;
	  var i ; document.MM_returnValue = false;
	  for (i=0; i&lt;(args.length-1); i+=2) eval(args[i]+&quot;.location=&#039;&quot;+args[i+1]+&quot;&#039;&quot;);
	} else {
	newWindow = window.open(&quot;/vwd_justso.htm&quot;,&quot;newWindow&quot;,&quot;width=&quot;+scrWidth+&quot;,height=&quot;+scrHeight+&quot;,left=&quot;+posLeft+&quot;,top=&quot;+posTop);
	newWindow.document.open();
	newWindow.document.write(&#039;&lt;html&gt;&lt;title&gt;&#039;+alt+&#039;&lt;/title&gt;&lt;body leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; bgcolor=&#039;+bgcolor+&#039; onBlur=&quot;self.close()&quot; onClick=&quot;self.close()&quot;&gt;&#039;);  
	newWindow.document.write(&#039;&lt;table width=&#039;+imageWidth+&#039; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; align=&quot;center&quot; height=&#039;+scrHeight+&#039; &gt;&lt;tr&gt;&lt;td&gt;&#039;);
	newWindow.document.write(&#039;&lt;img src=&quot;&#039;+imageName+&#039;&quot; width=&#039;+imageWidth+&#039; height=&#039;+imageHeight+&#039; alt=&quot;Click screen to close&quot; &gt;&#039;); 
	newWindow.document.write(&#039;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;&#039;);
	newWindow.document.close();
	newWindow.focus();
	}
}
//--&gt;
&lt;/script&gt;&lt;table border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;1&quot; bgcolor=&quot;#000000&quot;&gt;
&lt;tr align=&quot;center&quot; bgcolor=&quot;#FFFFFF&quot;&gt;
&lt;td colspan=&quot;3&quot;&gt;&lt;font size=&quot;1&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; color=&quot;#000000&quot;&gt;Click on an image to enlarge&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;3&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/baby-fan.jpg&#039;,&#039;487&#039;,&#039;441&#039;,&#039;* * Click screen to close * *&#039;,&#039;#333399&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/baby-fans.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/clifton_debate.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#003366&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/clifton_debatesm.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/MOD2.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#003366&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/MOD2sm.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/A&amp;amp;M tuition1.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#003366&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/A&amp;amp;M%20tuition1s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/A&amp;amp;Mtuition2.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#003366&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/A&amp;amp;Mtuition2s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/1marchofdimes.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#003366&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/1marchofdimessm.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/raywylie2.jpg&#039;,&#039;653&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#CCCC99&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/raywylie2t.jpg&quot; width=&quot;116&quot; height=&quot;107&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/parade1.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#CCCC99&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/parade1s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot; &gt;&lt;/a&gt;&lt;/td&gt;
&lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;a href=&quot;javascript:;&quot; onClick=&quot;JustSoPicWindow(&#039;/images/gallery/parade2.jpg&#039;,&#039;800&#039;,&#039;600&#039;,&#039;* * Click screen to close * *&#039;,&#039;#CCCC99&#039;,&#039;hug image&#039;,&#039;10&#039;);return document.MM_returnValue&quot;&gt;&lt;img src=&quot;/images/gallery/parade2s.jpg&quot; width=&quot;143&quot; height=&quot;107&quot; border=&quot;0&quot; &gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot; valign=&quot;top&quot;&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td bgcolor=&quot;#DCDEC8&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;
&lt;td colspan=&quot;3&quot; bgcolor=&quot;#383B47&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;br clear=&quot;left&quot;&lt;br /&gt;
&lt;!--break--&gt;&lt;/p&gt;
</description>
 <comments>http://www.chetedwards.com/node/105#comment</comments>
 <category domain="http://www.chetedwards.com/taxonomy/term/8">Media Center</category>
 <category domain="http://www.chetedwards.com/taxonomy/term/63">Photo Galleries</category>
 <pubDate>Thu, 01 Jun 2006 14:06:27 -0700</pubDate>
 <dc:creator>Kat</dc:creator>
 <guid isPermaLink="false">105 at http://www.chetedwards.com</guid>
</item>
</channel>
</rss>
