
var entryFoldersList = new Array("May2010","April2010","March2010","February2010","January2010");

function getHaloscanJavascript() {
	var haloscanJavascript = '';
	document.write(haloscanJavascript);
}

function getCommentsCode(entryUUID) {
	var commentsCode = '';
	document.write(commentsCode);
}

function getAdsenseCode() {
	var adsenseCode = '';
	document.write(adsenseCode);
}

function getSiteSearchCode() {
	var siteSearchCode = '';
	document.write(siteSearchCode);
}

function getCalendarHead() {
    var calendarHead = 'June 2010';
    document.write(calendarHead);
}

function getMonthName(month) {
	var monthNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
	document.write(monthNames[month]);
}

function getWeekDay(day) {
   var weekDays = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
   document.write(weekDays[day]);
}

function getCalendarRows(blogBaseURL) {
    var calendarRows = '<tr><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">1</span></td><td align="center"><span class="calendar">2</span></td><td align="center"><span class="calendar">3</span></td><td align="center"><span class="calendar">4</span></td><td align="center"><span class="calendar">5</span></td></tr> <tr><td align="center"><span class="calendar">6</span></td><td align="center"><span class="calendar">7</span></td><td align="center"><span class="calendar">8</span></td><td align="center"><span class="calendar">9</span></td><td align="center"><span class="calendar">10</span></td><td align="center"><span class="calendar">11</span></td><td align="center"><span class="calendar"><a href="<$BlogBaseURL$>archives/2010/6/12/index.html">12</a></span></td></tr> <tr><td align="center"><span class="calendar">13</span></td><td align="center"><span class="calendar">14</span></td><td align="center"><span class="calendar">15</span></td><td align="center"><span class="calendar">16</span></td><td align="center"><span class="calendar">17</span></td><td align="center"><span class="calendar">18</span></td><td align="center"><span class="calendar">19</span></td></tr> <tr><td align="center"><span class="calendar">20</span></td><td align="center"><span class="calendar">21</span></td><td align="center"><span class="calendar">22</span></td><td align="center"><span class="calendar">23</span></td><td align="center"><span class="calendar">24</span></td><td align="center"><span class="calendar">25</span></td><td align="center"><span class="calendar">26</span></td></tr> <tr><td align="center"><span class="calendar">27</span></td><td align="center"><span class="calendar">28</span></td><td align="center"><span class="calendar">29</span></td><td align="center"><span class="calendar">30</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr> <tr><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr>';
	calendarRows = calendarRows.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(calendarRows);
}

function getCategories(blogBaseURL) {
    var categories = '<ul> <li> <a href="<$BlogBaseURL$>Winter 2010/index.html"> (55) Winter 2010 </a> </li> <li> <a href="<$BlogBaseURL$>Spring 2010/index.html"> (56) Spring 2010 </a> </li> </ul>';
	categories = categories.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(categories); 
}

function getNextEntryLink(entryFolder) {   
	var i;
	var categoryFolder, nextEntryFolder, nextCategoryFolder;
	
    for(i = 0; i < entryFoldersList.length -1; i++) {
        if(entryFoldersList[i] == entryFolder) {
			categoryFolder = getCategoryFolderForEntryFolder(entryFolder);
			nextEntryFolder = entryFoldersList[i+1];
			nextCategoryFolder = getCategoryFolderForEntryFolder(nextEntryFolder);
			
			if(nextCategoryFolder != null) {
				if(categoryFolder != null) {
					document.write('<a href="../../' + nextCategoryFolder + '/' + nextEntryFolder + '/index.html"> Next </a>');
				} else {
					document.write('<a href="../' + nextCategoryFolder + '/' + nextEntryFolder + '/index.html"> Next </a>');
				}
			} else {
				if(categoryFolder != null) {
					document.write('<a href="../../' + nextEntryFolder + '/index.html"> Next </a>');
				} else {
					document.write('<a href="../' + nextEntryFolder + '/index.html"> Next </a>');
				}
			}
			
			return;
        }
    }
	
	document.write('');
}

function getPreviousEntryLink(entryFolder) {   
	var i;
	var categoryFolder, previousEntryFolder, previousCategoryFolder;
	
    for(i = 1; i < entryFoldersList.length; i++) {
        if(entryFoldersList[i] == entryFolder) {
			categoryFolder = getCategoryFolderForEntryFolder(entryFolder);
			previousEntryFolder = entryFoldersList[i-1];
			previousCategoryFolder = getCategoryFolderForEntryFolder(previousEntryFolder);
			
			if(previousCategoryFolder != null) {
				if(categoryFolder != null) {
					document.write('<a href="../../' + previousCategoryFolder + '/' + previousEntryFolder + '/index.html"> Previous </a>');
				} else {
					document.write('<a href="../' + previousCategoryFolder + '/' + previousEntryFolder + '/index.html"> Previous </a>');
				}
			} else {
				if(categoryFolder != null) {
					document.write('<a href="../../' + previousEntryFolder + '/index.html"> Previous </a>');
				} else {
					document.write('<a href="../' + previousEntryFolder + '/index.html"> Previous </a>');
				}
			}
            
			return;
        }
    }
	
	document.write('');
}

function getCategoryFolderForEntryFolder(entryFolder) {
    var entryCategoryFolderPairs = new Array("January2010","Winter 2010","February2010","Winter 2010","March2010","Spring 2010","April2010","Spring 2010","May2010","Spring 2010");
    
    for(var i = 0; i < entryCategoryFolderPairs.length -1; i++) {
        if(entryCategoryFolderPairs[i] == entryFolder) {
            return(entryCategoryFolderPairs[i+1]);
        }
    }
	
	return null;
}

function getBlogName() {
    var blogName = 'Doktor Family Journey 2010';
    document.write(blogName);
}

function getCategoryName(categoryUUID) {
    var categoryPairs = new Array("3EE7C16B-1C84-499D-A893-CEF9C3A36580","(55) Winter 2010","A5491CB5-EF37-4F1C-8CBA-A76ADE5A4616","(56) Spring 2010");
    
    for(var i = 0; i < categoryPairs.length -1; i++) {
        if(categoryPairs[i] == categoryUUID) {
            document.write(categoryPairs[i+1]);
        }
    }
}

function getPrimarySidebarItemsForBlogPage(blogBaseURL) {
	var sidebarItems = '<h3> bright happy power™ </h3> <br><a href="http://www.brighthappypower.org" target="_blank">BRIGHT HAPPY POWER™</a> <br><a href="http://www.brighthappypower.org/Site/Bike_Ride!.html" target="_blank">Coast of Hope Bike Ride</a><br> <br><a href="http://idisk.mac.com/dok/Public/smile2.JPG" target="_blank"><span style="color: #000000"><img src="http://idisk.mac.com/dok/Public/smile2.JPG" border="4"></a> <br> <a href="http://www.brighthappypower.org/Site/Why_Cranes.html" target="_blank">About Jessie</a><br><br> <a href="http://www.i-dok.com/Jessica/index.html" target="_blank">Jessica Rose Doktor<br>1998-2007</a><br><br> <a href="http://www.dok.com/familywords/whatcomesnext/index.html" target="_blank">What Comes Next</a><span style="color: #000000" <br>A Sermon by Gail Doktor<br>October 19, 2008<br><br> <a href="http://www.dok.com/familywords/Lamentations3/index.html" target="_blank">Lamentations 3</a><br><br> <h3>other links</h3> <FONT size=-2 face="arial,helvetica"> <span style="color: #000000" <br> <a href="http://www.wickedlocal.com/ipswich/archive/x596329120/LETTER-TO-THE-EDITOR-Bright-Happy-Power-appreciates-community" target="_blank">LETTER TO THE EDITOR</a><br>December 3, 2008<br><br> <a href="http://www.pmc.org/mypmc/profiles.asp?Section=story&eGiftID=TB0145" target="_blank">2010 PMC Team</a><br> <a href="http://www.i-dok.com/Doktor_Family_Journal/Resources.html"target="_blank"> RESOURCES </a href><br> <h3> contributions </h3> <div align="center"> <FONT size=-2 face="arial,helvetica"> <span style="color: #000000" <br> <b>BRIGHT HAPPY POWER™ Fund</b><br> (Child Life projects at <br>Children\'s Hospital Boston)<br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="brighthappypower@mac.com"> <input type="hidden" name="item_name" value="BRIGHT HAPPY POWER -tm Fund"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/BHP-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/BHP-button2.gif" width="1" height="1"> </form> <br> <b>MY SISTER\'S KEEPER Fund</b><br> (Educational fund <br>for Jessie\'s sister, Sarah)<br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="mysisterskeeper94@gmail.com"> <input type="hidden" name="item_name" value="My Sister\'s Keeper Fund"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/MSK-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/MSK-button2.gif" width="1" height="1"> </form> <br> <b>DOKTOR FAMILY Fund</b><br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="dok@mac.com"> <input type="hidden" name="item_name" value="Doktor Family Fund"> <input type="hidden" name="page_style" value="DoktorFamilyFund"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/DFF-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/DFF-button2.gif" width="1" height="1"> </form> <br> Send checks to:<br> <a href="https://www.institutionforsavings.com/" target="_blank" <b>Institution For Savings</b></a><br> c/o Tammy Roeger<br> 2 Depot Square<br> Ipswich, MA 01938<br><br> <h3> Notify List </h3> <P><form method=post action="http://members.notifylist.com/edit/joinlist"> <input type=hidden name="list_name" value="doktor-weblog"> Join the Notify List and get email <br> when this site is updated. Email:<BR> <FONT size=-2 face="arial,helvetica"> <input type=text name="email" value=""> <input type=submit value="Join"><BR> </small>powered by <A HREF="http://NotifyList.com">NotifyList.com</A></FORM></P> </font> </a> <h3> Search This Site </h3> <br> <FONT size=1 face="arial,helvetica"> <FORM ACTION="http://search.freefind.com/find.html" METHOD="GET" target="_self"> <INPUT TYPE="HIDDEN" NAME="id" VALUE="56049367"> <INPUT TYPE="HIDDEN" NAME="pageid" VALUE="r"> <INPUT TYPE="HIDDEN" NAME="mode" VALUE="ALL"> <INPUT type="HIDDEN" name="n" value="0"> <INPUT TYPE="TEXT" NAME="query" SIZE="15"><small> <INPUT TYPE="SUBMIT" VALUE=" Find "><br> </small>powered by <A HREF="http://www.freefind.com"> FreeFind</A></font></FORM> </a> <h3> Site Meter </h3> <br> <!--WEBBOT bot="HTMLMarkup" startspan ALT="Site Meter" --> <script type="text/javascript" language="JavaScript">var site="sm6doktor"</script> <script type="text/javascript" language="JavaScript1.2" src="http://sm6.sitemeter.com/js/counter.js?site=sm6doktor"> </script> <noscript> <a href="http://sm6.sitemeter.com/stats.asp?site=sm6doktor" target="_blank"> <img src="http://sm6.sitemeter.com/meter.asp?site=sm6doktor" alt="Site Meter" border="0"/></a> </noscript> <!-- Copyright (c)2005 Site Meter --> <!--WEBBOT bot="HTMLMarkup" Endspan --> <br> </font> <!-- Start Bravenet.com Service Code --> <div align="center"> <a href="http://pub29.bravenet.com/guestbook/2487847654/"target="_blank"> <img src="http://assets.bravenet.com/cp/guestbook.gif" border="0" title="Free Guestbook from Bravenet.com" alt="Free Guestbook from Bravenet.com" /><br></a> </div> <!-- End Bravenet.com Service Code --> <h3> Archives </h3> <br> <a href="<$BlogBaseURL$>archives/index.html">Browse 2010 archives by date</a><br><br> <a href="http://www.dok.com/blog/archives/2009/index.html" target="_blank"><sp>2009 Archives</sp></span></a><br> <a href="http://www.dok.com/blog/archives/2008/index.html" target="_blank"><sp>2008 Archives</sp></span></a><br> <a href="http://www.dok.com/blog/archives/2007/index.html" target="_blank"><sp>April - December 2007</sp></span></a><br> <a href="http://homepage.mac.com/dok/iblog/DoktorFamilyJourney2007/index.html" target="_blank"><sp>January - March 2007</sp></span></a><br> <a href="http://homepage.mac.com/dok/Sites/Sites/iblog/B541907158/index.html" target="_blank"><sp>2006 Doktor Family Journey</sp></span></a><br> <a href="http://homepage.mac.com/dok/iblog/B1663684280/index.html" target="_blank"><sp>2005 Doktor Family Journey</sp></span></a> <h3> XML/RSS Feed </h3> <p> <a href="<$BlogBaseURL$>rss.xml" title="RSS feed"><img src="<$BlogBaseURL$>Shared/RSS.png" alt="rss" align="top" border="0"/> &nbsp; Syndicate this site</a> </p> <h3> License </h3> <div> <br> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"> <img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-nd/3.0/88x31.png" /> </a> <br />This work is licensed under a <br> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/">Creative Commons License</a> <br><br> </div> ';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getSecondarySidebarItemsForBlogPage(blogBaseURL) {
	var sidebarItems = '';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getPrimarySidebarItemsForCategoryPage(blogBaseURL) {
	var sidebarItems = '<h3> bright happy power™ </h3> <br><a href="http://www.brighthappypower.org" target="_blank">BRIGHT HAPPY POWER™</a> <br><a href="http://www.brighthappypower.org/Site/Bike_Ride!.html" target="_blank">Coast of Hope Bike Ride</a><br> <br><a href="http://idisk.mac.com/dok/Public/smile2.JPG" target="_blank"><span style="color: #000000"><img src="http://idisk.mac.com/dok/Public/smile2.JPG" border="4"></a> <br> <a href="http://www.brighthappypower.org/Site/Why_Cranes.html" target="_blank">About Jessie</a><br><br> <a href="http://www.i-dok.com/Jessica/index.html" target="_blank">Jessica Rose Doktor<br>1998-2007</a><br><br> <a href="http://www.dok.com/familywords/whatcomesnext/index.html" target="_blank">What Comes Next</a><span style="color: #000000" <br>A Sermon by Gail Doktor<br>October 19, 2008<br><br> <a href="http://www.dok.com/familywords/Lamentations3/index.html" target="_blank">Lamentations 3</a><br><br> <h3>other links</h3> <FONT size=-2 face="arial,helvetica"> <span style="color: #000000" <br> <a href="http://www.wickedlocal.com/ipswich/archive/x596329120/LETTER-TO-THE-EDITOR-Bright-Happy-Power-appreciates-community" target="_blank">LETTER TO THE EDITOR</a><br>December 3, 2008<br><br> <a href="http://www.pmc.org/mypmc/profiles.asp?Section=story&eGiftID=TB0145" target="_blank">2010 PMC Team</a><br> <a href="http://www.i-dok.com/Doktor_Family_Journal/Resources.html"target="_blank"> RESOURCES </a href><br> <h3> contributions </h3> <div align="center"> <FONT size=-2 face="arial,helvetica"> <span style="color: #000000" <br> <b>BRIGHT HAPPY POWER™ Fund</b><br> (Child Life projects at <br>Children\'s Hospital Boston)<br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="brighthappypower@mac.com"> <input type="hidden" name="item_name" value="BRIGHT HAPPY POWER -tm Fund"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/BHP-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/BHP-button2.gif" width="1" height="1"> </form> <br> <b>MY SISTER\'S KEEPER Fund</b><br> (Educational fund <br>for Jessie\'s sister, Sarah)<br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="mysisterskeeper94@gmail.com"> <input type="hidden" name="item_name" value="My Sister\'s Keeper Fund"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/MSK-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/MSK-button2.gif" width="1" height="1"> </form> <br> <b>DOKTOR FAMILY Fund</b><br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="dok@mac.com"> <input type="hidden" name="item_name" value="Doktor Family Fund"> <input type="hidden" name="page_style" value="DoktorFamilyFund"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/DFF-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/DFF-button2.gif" width="1" height="1"> </form> <br> Send checks to:<br> <a href="https://www.institutionforsavings.com/" target="_blank" <b>Institution For Savings</b></a><br> c/o Tammy Roeger<br> 2 Depot Square<br> Ipswich, MA 01938<br><br> <h3> Notify List </h3> <P><form method=post action="http://members.notifylist.com/edit/joinlist"> <input type=hidden name="list_name" value="doktor-weblog"> Join the Notify List and get email <br> when this site is updated. Email:<BR> <FONT size=-2 face="arial,helvetica"> <input type=text name="email" value=""> <input type=submit value="Join"><BR> </small>powered by <A HREF="http://NotifyList.com">NotifyList.com</A></FORM></P> </font> </a> <h3> Search This Site </h3> <br> <FONT size=1 face="arial,helvetica"> <FORM ACTION="http://search.freefind.com/find.html" METHOD="GET" target="_self"> <INPUT TYPE="HIDDEN" NAME="id" VALUE="56049367"> <INPUT TYPE="HIDDEN" NAME="pageid" VALUE="r"> <INPUT TYPE="HIDDEN" NAME="mode" VALUE="ALL"> <INPUT type="HIDDEN" name="n" value="0"> <INPUT TYPE="TEXT" NAME="query" SIZE="15"><small> <INPUT TYPE="SUBMIT" VALUE=" Find "><br> </small>powered by <A HREF="http://www.freefind.com"> FreeFind</A></font></FORM> </a> <h3> Site Meter </h3> <br> <!--WEBBOT bot="HTMLMarkup" startspan ALT="Site Meter" --> <script type="text/javascript" language="JavaScript">var site="sm6doktor"</script> <script type="text/javascript" language="JavaScript1.2" src="http://sm6.sitemeter.com/js/counter.js?site=sm6doktor"> </script> <noscript> <a href="http://sm6.sitemeter.com/stats.asp?site=sm6doktor" target="_blank"> <img src="http://sm6.sitemeter.com/meter.asp?site=sm6doktor" alt="Site Meter" border="0"/></a> </noscript> <!-- Copyright (c)2005 Site Meter --> <!--WEBBOT bot="HTMLMarkup" Endspan --> <br> </font> <!-- Start Bravenet.com Service Code --> <div align="center"> <a href="http://pub29.bravenet.com/guestbook/2487847654/"target="_blank"> <img src="http://assets.bravenet.com/cp/guestbook.gif" border="0" title="Free Guestbook from Bravenet.com" alt="Free Guestbook from Bravenet.com" /><br></a> </div> <!-- End Bravenet.com Service Code --> <h3> Archives </h3> <br> <a href="<$BlogBaseURL$>archives/index.html">Browse 2010 archives by date</a><br><br> <a href="http://www.dok.com/blog/archives/2009/index.html" target="_blank"><sp>2009 Archives</sp></span></a><br> <a href="http://www.dok.com/blog/archives/2008/index.html" target="_blank"><sp>2008 Archives</sp></span></a><br> <a href="http://www.dok.com/blog/archives/2007/index.html" target="_blank"><sp>April - December 2007</sp></span></a><br> <a href="http://homepage.mac.com/dok/iblog/DoktorFamilyJourney2007/index.html" target="_blank"><sp>January - March 2007</sp></span></a><br> <a href="http://homepage.mac.com/dok/Sites/Sites/iblog/B541907158/index.html" target="_blank"><sp>2006 Doktor Family Journey</sp></span></a><br> <a href="http://homepage.mac.com/dok/iblog/B1663684280/index.html" target="_blank"><sp>2005 Doktor Family Journey</sp></span></a> <h3> XML/RSS Feed </h3> <p> <a href="<$BlogBaseURL$>rss.xml" title="RSS feed"><img src="<$BlogBaseURL$>Shared/RSS.png" alt="rss" align="top" border="0"/> &nbsp; Syndicate this site</a> </p> <h3> License </h3> <div> <br> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"> <img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-nd/3.0/88x31.png" /> </a> <br />This work is licensed under a <br> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/">Creative Commons License</a> <br><br> </div> ';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getSecondarySidebarItemsForCategoryPage(blogBaseURL) {
	var sidebarItems = '';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getPrimarySidebarItemsForEntryPage(blogBaseURL) {
	var sidebarItems = '<h3> bright happy power™ </h3> <br><a href="http://www.brighthappypower.org" target="_blank">BRIGHT HAPPY POWER™</a> <br><a href="http://www.brighthappypower.org/Site/Bike_Ride!.html" target="_blank">Coast of Hope Bike Ride</a><br> <br><a href="http://idisk.mac.com/dok/Public/smile2.JPG" target="_blank"><span style="color: #000000"><img src="http://idisk.mac.com/dok/Public/smile2.JPG" border="4"></a> <br> <a href="http://www.brighthappypower.org/Site/Why_Cranes.html" target="_blank">About Jessie</a><br><br> <a href="http://www.i-dok.com/Jessica/index.html" target="_blank">Jessica Rose Doktor<br>1998-2007</a><br><br> <a href="http://www.dok.com/familywords/whatcomesnext/index.html" target="_blank">What Comes Next</a><span style="color: #000000" <br>A Sermon by Gail Doktor<br>October 19, 2008<br><br> <a href="http://www.dok.com/familywords/Lamentations3/index.html" target="_blank">Lamentations 3</a><br><br> <h3>other links</h3> <FONT size=-2 face="arial,helvetica"> <span style="color: #000000" <br> <a href="http://www.wickedlocal.com/ipswich/archive/x596329120/LETTER-TO-THE-EDITOR-Bright-Happy-Power-appreciates-community" target="_blank">LETTER TO THE EDITOR</a><br>December 3, 2008<br><br> <a href="http://www.pmc.org/mypmc/profiles.asp?Section=story&eGiftID=TB0145" target="_blank">2010 PMC Team</a><br> <a href="http://www.i-dok.com/Doktor_Family_Journal/Resources.html"target="_blank"> RESOURCES </a href><br> <h3> contributions </h3> <div align="center"> <FONT size=-2 face="arial,helvetica"> <span style="color: #000000" <br> <b>BRIGHT HAPPY POWER™ Fund</b><br> (Child Life projects at <br>Children\'s Hospital Boston)<br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="brighthappypower@mac.com"> <input type="hidden" name="item_name" value="BRIGHT HAPPY POWER -tm Fund"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/BHP-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/BHP-button2.gif" width="1" height="1"> </form> <br> <b>MY SISTER\'S KEEPER Fund</b><br> (Educational fund <br>for Jessie\'s sister, Sarah)<br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="mysisterskeeper94@gmail.com"> <input type="hidden" name="item_name" value="My Sister\'s Keeper Fund"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/MSK-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/MSK-button2.gif" width="1" height="1"> </form> <br> <b>DOKTOR FAMILY Fund</b><br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="dok@mac.com"> <input type="hidden" name="item_name" value="Doktor Family Fund"> <input type="hidden" name="page_style" value="DoktorFamilyFund"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/DFF-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/DFF-button2.gif" width="1" height="1"> </form> <br> Send checks to:<br> <a href="https://www.institutionforsavings.com/" target="_blank" <b>Institution For Savings</b></a><br> c/o Tammy Roeger<br> 2 Depot Square<br> Ipswich, MA 01938<br><br> <h3> Notify List </h3> <P><form method=post action="http://members.notifylist.com/edit/joinlist"> <input type=hidden name="list_name" value="doktor-weblog"> Join the Notify List and get email <br> when this site is updated. Email:<BR> <FONT size=-2 face="arial,helvetica"> <input type=text name="email" value=""> <input type=submit value="Join"><BR> </small>powered by <A HREF="http://NotifyList.com">NotifyList.com</A></FORM></P> </font> </a> <h3> Search This Site </h3> <br> <FONT size=1 face="arial,helvetica"> <FORM ACTION="http://search.freefind.com/find.html" METHOD="GET" target="_self"> <INPUT TYPE="HIDDEN" NAME="id" VALUE="56049367"> <INPUT TYPE="HIDDEN" NAME="pageid" VALUE="r"> <INPUT TYPE="HIDDEN" NAME="mode" VALUE="ALL"> <INPUT type="HIDDEN" name="n" value="0"> <INPUT TYPE="TEXT" NAME="query" SIZE="15"><small> <INPUT TYPE="SUBMIT" VALUE=" Find "><br> </small>powered by <A HREF="http://www.freefind.com"> FreeFind</A></font></FORM> </a> <h3> Site Meter </h3> <br> <!--WEBBOT bot="HTMLMarkup" startspan ALT="Site Meter" --> <script type="text/javascript" language="JavaScript">var site="sm6doktor"</script> <script type="text/javascript" language="JavaScript1.2" src="http://sm6.sitemeter.com/js/counter.js?site=sm6doktor"> </script> <noscript> <a href="http://sm6.sitemeter.com/stats.asp?site=sm6doktor" target="_blank"> <img src="http://sm6.sitemeter.com/meter.asp?site=sm6doktor" alt="Site Meter" border="0"/></a> </noscript> <!-- Copyright (c)2005 Site Meter --> <!--WEBBOT bot="HTMLMarkup" Endspan --> <br> </font> <!-- Start Bravenet.com Service Code --> <div align="center"> <a href="http://pub29.bravenet.com/guestbook/2487847654/"target="_blank"> <img src="http://assets.bravenet.com/cp/guestbook.gif" border="0" title="Free Guestbook from Bravenet.com" alt="Free Guestbook from Bravenet.com" /><br></a> </div> <!-- End Bravenet.com Service Code --> <h3> Archives </h3> <br> <a href="<$BlogBaseURL$>archives/index.html">Browse 2010 archives by date</a><br><br> <a href="http://www.dok.com/blog/archives/2009/index.html" target="_blank"><sp>2009 Archives</sp></span></a><br> <a href="http://www.dok.com/blog/archives/2008/index.html" target="_blank"><sp>2008 Archives</sp></span></a><br> <a href="http://www.dok.com/blog/archives/2007/index.html" target="_blank"><sp>April - December 2007</sp></span></a><br> <a href="http://homepage.mac.com/dok/iblog/DoktorFamilyJourney2007/index.html" target="_blank"><sp>January - March 2007</sp></span></a><br> <a href="http://homepage.mac.com/dok/Sites/Sites/iblog/B541907158/index.html" target="_blank"><sp>2006 Doktor Family Journey</sp></span></a><br> <a href="http://homepage.mac.com/dok/iblog/B1663684280/index.html" target="_blank"><sp>2005 Doktor Family Journey</sp></span></a> <h3> XML/RSS Feed </h3> <p> <a href="<$BlogBaseURL$>rss.xml" title="RSS feed"><img src="<$BlogBaseURL$>Shared/RSS.png" alt="rss" align="top" border="0"/> &nbsp; Syndicate this site</a> </p> <h3> License </h3> <div> <br> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"> <img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-nd/3.0/88x31.png" /> </a> <br />This work is licensed under a <br> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/">Creative Commons License</a> <br><br> </div> ';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getSecondarySidebarItemsForEntryPage(blogBaseURL) {
	var sidebarItems = '';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getPrimarySidebarItemsForArchivePage(blogBaseURL) {
	var sidebarItems = '<h3> bright happy power™ </h3> <br><a href="http://www.brighthappypower.org" target="_blank">BRIGHT HAPPY POWER™</a> <br><a href="http://www.brighthappypower.org/Site/Bike_Ride!.html" target="_blank">Coast of Hope Bike Ride</a><br> <br><a href="http://idisk.mac.com/dok/Public/smile2.JPG" target="_blank"><span style="color: #000000"><img src="http://idisk.mac.com/dok/Public/smile2.JPG" border="4"></a> <br> <a href="http://www.brighthappypower.org/Site/Why_Cranes.html" target="_blank">About Jessie</a><br><br> <a href="http://www.i-dok.com/Jessica/index.html" target="_blank">Jessica Rose Doktor<br>1998-2007</a><br><br> <a href="http://www.dok.com/familywords/whatcomesnext/index.html" target="_blank">What Comes Next</a><span style="color: #000000" <br>A Sermon by Gail Doktor<br>October 19, 2008<br><br> <a href="http://www.dok.com/familywords/Lamentations3/index.html" target="_blank">Lamentations 3</a><br><br> <h3>other links</h3> <FONT size=-2 face="arial,helvetica"> <span style="color: #000000" <br> <a href="http://www.wickedlocal.com/ipswich/archive/x596329120/LETTER-TO-THE-EDITOR-Bright-Happy-Power-appreciates-community" target="_blank">LETTER TO THE EDITOR</a><br>December 3, 2008<br><br> <a href="http://www.pmc.org/mypmc/profiles.asp?Section=story&eGiftID=TB0145" target="_blank">2010 PMC Team</a><br> <a href="http://www.i-dok.com/Doktor_Family_Journal/Resources.html"target="_blank"> RESOURCES </a href><br> <h3> contributions </h3> <div align="center"> <FONT size=-2 face="arial,helvetica"> <span style="color: #000000" <br> <b>BRIGHT HAPPY POWER™ Fund</b><br> (Child Life projects at <br>Children\'s Hospital Boston)<br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="brighthappypower@mac.com"> <input type="hidden" name="item_name" value="BRIGHT HAPPY POWER -tm Fund"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/BHP-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/BHP-button2.gif" width="1" height="1"> </form> <br> <b>MY SISTER\'S KEEPER Fund</b><br> (Educational fund <br>for Jessie\'s sister, Sarah)<br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="mysisterskeeper94@gmail.com"> <input type="hidden" name="item_name" value="My Sister\'s Keeper Fund"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/MSK-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/MSK-button2.gif" width="1" height="1"> </form> <br> <b>DOKTOR FAMILY Fund</b><br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="dok@mac.com"> <input type="hidden" name="item_name" value="Doktor Family Fund"> <input type="hidden" name="page_style" value="DoktorFamilyFund"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/DFF-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/DFF-button2.gif" width="1" height="1"> </form> <br> Send checks to:<br> <a href="https://www.institutionforsavings.com/" target="_blank" <b>Institution For Savings</b></a><br> c/o Tammy Roeger<br> 2 Depot Square<br> Ipswich, MA 01938<br><br> <h3> Notify List </h3> <P><form method=post action="http://members.notifylist.com/edit/joinlist"> <input type=hidden name="list_name" value="doktor-weblog"> Join the Notify List and get email <br> when this site is updated. Email:<BR> <FONT size=-2 face="arial,helvetica"> <input type=text name="email" value=""> <input type=submit value="Join"><BR> </small>powered by <A HREF="http://NotifyList.com">NotifyList.com</A></FORM></P> </font> </a> <h3> Search This Site </h3> <br> <FONT size=1 face="arial,helvetica"> <FORM ACTION="http://search.freefind.com/find.html" METHOD="GET" target="_self"> <INPUT TYPE="HIDDEN" NAME="id" VALUE="56049367"> <INPUT TYPE="HIDDEN" NAME="pageid" VALUE="r"> <INPUT TYPE="HIDDEN" NAME="mode" VALUE="ALL"> <INPUT type="HIDDEN" name="n" value="0"> <INPUT TYPE="TEXT" NAME="query" SIZE="15"><small> <INPUT TYPE="SUBMIT" VALUE=" Find "><br> </small>powered by <A HREF="http://www.freefind.com"> FreeFind</A></font></FORM> </a> <h3> Site Meter </h3> <br> <!--WEBBOT bot="HTMLMarkup" startspan ALT="Site Meter" --> <script type="text/javascript" language="JavaScript">var site="sm6doktor"</script> <script type="text/javascript" language="JavaScript1.2" src="http://sm6.sitemeter.com/js/counter.js?site=sm6doktor"> </script> <noscript> <a href="http://sm6.sitemeter.com/stats.asp?site=sm6doktor" target="_blank"> <img src="http://sm6.sitemeter.com/meter.asp?site=sm6doktor" alt="Site Meter" border="0"/></a> </noscript> <!-- Copyright (c)2005 Site Meter --> <!--WEBBOT bot="HTMLMarkup" Endspan --> <br> </font> <!-- Start Bravenet.com Service Code --> <div align="center"> <a href="http://pub29.bravenet.com/guestbook/2487847654/"target="_blank"> <img src="http://assets.bravenet.com/cp/guestbook.gif" border="0" title="Free Guestbook from Bravenet.com" alt="Free Guestbook from Bravenet.com" /><br></a> </div> <!-- End Bravenet.com Service Code --> <h3> Archives </h3> <br> <a href="<$BlogBaseURL$>archives/index.html">Browse 2010 archives by date</a><br><br> <a href="http://www.dok.com/blog/archives/2009/index.html" target="_blank"><sp>2009 Archives</sp></span></a><br> <a href="http://www.dok.com/blog/archives/2008/index.html" target="_blank"><sp>2008 Archives</sp></span></a><br> <a href="http://www.dok.com/blog/archives/2007/index.html" target="_blank"><sp>April - December 2007</sp></span></a><br> <a href="http://homepage.mac.com/dok/iblog/DoktorFamilyJourney2007/index.html" target="_blank"><sp>January - March 2007</sp></span></a><br> <a href="http://homepage.mac.com/dok/Sites/Sites/iblog/B541907158/index.html" target="_blank"><sp>2006 Doktor Family Journey</sp></span></a><br> <a href="http://homepage.mac.com/dok/iblog/B1663684280/index.html" target="_blank"><sp>2005 Doktor Family Journey</sp></span></a> <h3> XML/RSS Feed </h3> <p> <a href="<$BlogBaseURL$>rss.xml" title="RSS feed"><img src="<$BlogBaseURL$>Shared/RSS.png" alt="rss" align="top" border="0"/> &nbsp; Syndicate this site</a> </p> <h3> License </h3> <div> <br> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"> <img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-nd/3.0/88x31.png" /> </a> <br />This work is licensed under a <br> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/">Creative Commons License</a> <br><br> </div> ';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getSecondarySidebarItemsForArchivePage(blogBaseURL) {
	var sidebarItems = '';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getPrimarySidebarItemsForMonthPage(blogBaseURL) {
	var sidebarItems = '';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getSecondarySidebarItemsForMonthPage(blogBaseURL) {
	var sidebarItems = '';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getPrimarySidebarItemsForDayPage(blogBaseURL) {
	var sidebarItems = '<h3> bright happy power™ </h3> <br><a href="http://www.brighthappypower.org" target="_blank">BRIGHT HAPPY POWER™</a> <br><a href="http://www.brighthappypower.org/Site/Bike_Ride!.html" target="_blank">Coast of Hope Bike Ride</a><br> <br><a href="http://idisk.mac.com/dok/Public/smile2.JPG" target="_blank"><span style="color: #000000"><img src="http://idisk.mac.com/dok/Public/smile2.JPG" border="4"></a> <br> <a href="http://www.brighthappypower.org/Site/Why_Cranes.html" target="_blank">About Jessie</a><br><br> <a href="http://www.i-dok.com/Jessica/index.html" target="_blank">Jessica Rose Doktor<br>1998-2007</a><br><br> <a href="http://www.dok.com/familywords/whatcomesnext/index.html" target="_blank">What Comes Next</a><span style="color: #000000" <br>A Sermon by Gail Doktor<br>October 19, 2008<br><br> <a href="http://www.dok.com/familywords/Lamentations3/index.html" target="_blank">Lamentations 3</a><br><br> <h3>other links</h3> <FONT size=-2 face="arial,helvetica"> <span style="color: #000000" <br> <a href="http://www.wickedlocal.com/ipswich/archive/x596329120/LETTER-TO-THE-EDITOR-Bright-Happy-Power-appreciates-community" target="_blank">LETTER TO THE EDITOR</a><br>December 3, 2008<br><br> <a href="http://www.pmc.org/mypmc/profiles.asp?Section=story&eGiftID=TB0145" target="_blank">2010 PMC Team</a><br> <a href="http://www.i-dok.com/Doktor_Family_Journal/Resources.html"target="_blank"> RESOURCES </a href><br> <h3> contributions </h3> <div align="center"> <FONT size=-2 face="arial,helvetica"> <span style="color: #000000" <br> <b>BRIGHT HAPPY POWER™ Fund</b><br> (Child Life projects at <br>Children\'s Hospital Boston)<br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="brighthappypower@mac.com"> <input type="hidden" name="item_name" value="BRIGHT HAPPY POWER -tm Fund"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/BHP-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/BHP-button2.gif" width="1" height="1"> </form> <br> <b>MY SISTER\'S KEEPER Fund</b><br> (Educational fund <br>for Jessie\'s sister, Sarah)<br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="mysisterskeeper94@gmail.com"> <input type="hidden" name="item_name" value="My Sister\'s Keeper Fund"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/MSK-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/MSK-button2.gif" width="1" height="1"> </form> <br> <b>DOKTOR FAMILY Fund</b><br> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="dok@mac.com"> <input type="hidden" name="item_name" value="Doktor Family Fund"> <input type="hidden" name="page_style" value="DoktorFamilyFund"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="bn" value="PP-DonationsBF"> <input type="image" src="http://www.dok.com/buttons/DFF-button2.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"> <img alt="" border="0" src="http://www.dok.com/buttons/DFF-button2.gif" width="1" height="1"> </form> <br> Send checks to:<br> <a href="https://www.institutionforsavings.com/" target="_blank" <b>Institution For Savings</b></a><br> c/o Tammy Roeger<br> 2 Depot Square<br> Ipswich, MA 01938<br><br> <h3> Notify List </h3> <P><form method=post action="http://members.notifylist.com/edit/joinlist"> <input type=hidden name="list_name" value="doktor-weblog"> Join the Notify List and get email <br> when this site is updated. Email:<BR> <FONT size=-2 face="arial,helvetica"> <input type=text name="email" value=""> <input type=submit value="Join"><BR> </small>powered by <A HREF="http://NotifyList.com">NotifyList.com</A></FORM></P> </font> </a> <h3> Search This Site </h3> <br> <FONT size=1 face="arial,helvetica"> <FORM ACTION="http://search.freefind.com/find.html" METHOD="GET" target="_self"> <INPUT TYPE="HIDDEN" NAME="id" VALUE="56049367"> <INPUT TYPE="HIDDEN" NAME="pageid" VALUE="r"> <INPUT TYPE="HIDDEN" NAME="mode" VALUE="ALL"> <INPUT type="HIDDEN" name="n" value="0"> <INPUT TYPE="TEXT" NAME="query" SIZE="15"><small> <INPUT TYPE="SUBMIT" VALUE=" Find "><br> </small>powered by <A HREF="http://www.freefind.com"> FreeFind</A></font></FORM> </a> <h3> Site Meter </h3> <br> <!--WEBBOT bot="HTMLMarkup" startspan ALT="Site Meter" --> <script type="text/javascript" language="JavaScript">var site="sm6doktor"</script> <script type="text/javascript" language="JavaScript1.2" src="http://sm6.sitemeter.com/js/counter.js?site=sm6doktor"> </script> <noscript> <a href="http://sm6.sitemeter.com/stats.asp?site=sm6doktor" target="_blank"> <img src="http://sm6.sitemeter.com/meter.asp?site=sm6doktor" alt="Site Meter" border="0"/></a> </noscript> <!-- Copyright (c)2005 Site Meter --> <!--WEBBOT bot="HTMLMarkup" Endspan --> <br> </font> <!-- Start Bravenet.com Service Code --> <div align="center"> <a href="http://pub29.bravenet.com/guestbook/2487847654/"target="_blank"> <img src="http://assets.bravenet.com/cp/guestbook.gif" border="0" title="Free Guestbook from Bravenet.com" alt="Free Guestbook from Bravenet.com" /><br></a> </div> <!-- End Bravenet.com Service Code --> <h3> Archives </h3> <br> <a href="<$BlogBaseURL$>archives/index.html">Browse 2010 archives by date</a><br><br> <a href="http://www.dok.com/blog/archives/2009/index.html" target="_blank"><sp>2009 Archives</sp></span></a><br> <a href="http://www.dok.com/blog/archives/2008/index.html" target="_blank"><sp>2008 Archives</sp></span></a><br> <a href="http://www.dok.com/blog/archives/2007/index.html" target="_blank"><sp>April - December 2007</sp></span></a><br> <a href="http://homepage.mac.com/dok/iblog/DoktorFamilyJourney2007/index.html" target="_blank"><sp>January - March 2007</sp></span></a><br> <a href="http://homepage.mac.com/dok/Sites/Sites/iblog/B541907158/index.html" target="_blank"><sp>2006 Doktor Family Journey</sp></span></a><br> <a href="http://homepage.mac.com/dok/iblog/B1663684280/index.html" target="_blank"><sp>2005 Doktor Family Journey</sp></span></a> <h3> XML/RSS Feed </h3> <p> <a href="<$BlogBaseURL$>rss.xml" title="RSS feed"><img src="<$BlogBaseURL$>Shared/RSS.png" alt="rss" align="top" border="0"/> &nbsp; Syndicate this site</a> </p> <h3> License </h3> <div> <br> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"> <img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-nd/3.0/88x31.png" /> </a> <br />This work is licensed under a <br> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/">Creative Commons License</a> <br><br> </div> ';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getSecondarySidebarItemsForDayPage(blogBaseURL) {
	var sidebarItems = '';
	sidebarItems = sidebarItems.replace(/<\$BlogBaseURL\$>/g,  blogBaseURL);
    document.write(sidebarItems);
}

function getStatistics() {
    var categoryStatistics = 'Doktor Family Journey 2010: 5 <br />(55) Winter 2010: 2 <br /> (56) Spring 2010: 3 <br /> ';
    document.write(categoryStatistics);
}

function getCopyright() {
	var copyright = 'Doktor - ALL RIGHTS RESERVED';
	document.write(copyright);
}

function getVersion() {
	var version = '2.0 RC3';
	document.write(version);
}

function getAuthorName() {
    var authorName = 'Gail Doktor';
    document.write(authorName);
}

function pathByDeletingLastComponent(path) {
	// Break path into an array of path components
	var pathComponents = path.split("/");
	// Pop the last path component off the end
	pathComponents.pop();
	// Rebuild and return the path
	return pathComponents.join("/");
}

function getTechnoratiCosmos(entryLink) {
	if(entryLink.length > 0) {
		document.write("<a href=\"http://technorati.com/search/" + pathByDeletingLastComponent(location.href) + "/" + entryLink + "?sub=postcosm\">See who's linked to this entry</a>");
	} else {
		document.write("<a href=\"http://technorati.com/search/" + location.href + "?sub=postcosm\">See who's linked to this entry</a>");
	}
}

function getTechnoratiWatchlist(entryLink) {
	if(entryLink.length > 0) {
		document.write("<a href=\"http://technorati.com/members/create.html?url=" + pathByDeletingLastComponent(location.href) + "/" + entryLink + "\">Track conversations about this post</a>");
	} else {
		document.write("<a href=\"http://technorati.com/members/create.html?url=" + location.href + "\">Track conversations about this post</a>");
	}
}

function getDeliciousURL(entryLink, entryTitle, blogBaseURL) {
	var encodedEntryTitle = escape(entryTitle);
	
	if(entryLink.length > 0) {
		document.write("<a href=\"http://del.icio.us/post?url=" + pathByDeletingLastComponent(location.href) + "/" + entryLink + "&title=" + encodedEntryTitle + "\" target=\"_blank\"><img src=\"" + blogBaseURL + "Shared/delicious.png\" title=\"del.icio.us\" alt=\"del.icio.us\" border=\"0\"/></a>");
	} else {
		document.write("<a href=\"http://del.icio.us/post?url=" + location.href + "&title=" + encodedEntryTitle + "\" target=\"_blank\"><img src=\"" + blogBaseURL + "Shared/delicious.png\" title=\"del.icio.us\" alt=\"del.icio.us\" border=\"0\"/></a>");
	}
}

function getDiggURL(entryLink, entryTitle, blogBaseURL) {
	var encodedEntryTitle = escape(entryTitle);
	
	if(entryLink.length > 0) {
		document.write("<a href=\"http://digg.com/submit?phase=2&url=" + pathByDeletingLastComponent(location.href) + "/" + entryLink + "&title=" + encodedEntryTitle + "\" target=\"_blank\"><img src=\"" + blogBaseURL + "Shared/digg.png\" title=\"digg\" alt=\"digg\" border=\"0\"/></a>");
	} else {
		document.write("<a href=\"http://digg.com/submit?phase=2&url=" + location.href + "&title=" + encodedEntryTitle + "\" target=\"_blank\"><img src=\"" + blogBaseURL + "Shared/digg.png\" title=\"digg\" alt=\"digg\" border=\"0\"/></a>");
	}
}

function getFurlURL(entryLink, entryTitle, blogBaseURL) {
	var encodedEntryTitle = escape(entryTitle);
	
	if(entryLink.length > 0) {
		document.write("<a href=\"http://www.furl.net/storeIt.jsp?u=" + pathByDeletingLastComponent(location.href) + "/" + entryLink + "&t=" + encodedEntryTitle + "\" target=\"_blank\"><img src=\"" + blogBaseURL + "Shared/furl.png\" title=\"furl\" alt=\"furl\" border=\"0\"/></a>");
	} else {
		document.write("<a href=\"http://www.furl.net/storeIt.jsp?u=" + location.href + "&t=" + encodedEntryTitle + "\" target=\"_blank\"><img src=\"" + blogBaseURL + "Shared/furl.png\" title=\"furl\" alt=\"furl\" border=\"0\"/></a>");
	}
}

function getRedditURL(entryLink, entryTitle, blogBaseURL) {
	var encodedEntryTitle = escape(entryTitle);
	
	if(entryLink.length > 0) {
		document.write("<a href=\"http://reddit.com/submit?url=" + pathByDeletingLastComponent(location.href) + "/" + entryLink + "&title=" + encodedEntryTitle + "\" target=\"_blank\"><img src=\"" + blogBaseURL + "Shared/reddit.png\" title=\"reddit\" alt=\"reddit\" border=\"0\"/></a>");
	} else {
		document.write("<a href=\"http://reddit.com/submit?url=" + location.href + "&title=" + encodedEntryTitle + "\" target=\"_blank\"><img src=\"" + blogBaseURL + "Shared/reddit.png\" title=\"reddit\" alt=\"reddit\" border=\"0\"/></a>");
	}
}

function getYahooMyWebURL(entryLink, entryTitle, blogBaseURL) {
	var encodedEntryTitle = escape(entryTitle);
	
	if(entryLink.length > 0) {
		document.write("<a href=\"http://myweb2.search.yahoo.com/myresults/bookmarklet?u=" + pathByDeletingLastComponent(location.href) + "/" + entryLink + "&t=" + encodedEntryTitle + "\" target=\"_blank\"><img src=\"" + blogBaseURL + "Shared/yahoomyweb.png\" title=\"YahooMyWeb\" alt=\"YahooMyWeb\" border=\"0\"/></a>");
	} else {
		document.write("<a href=\"http://myweb2.search.yahoo.com/myresults/bookmarklet?u=" + location.href + "&t=" + encodedEntryTitle + "\" target=\"_blank\"><img src=\"" + blogBaseURL + "Shared/yahoomyweb.png\" title=\"YahooMyWeb\" alt=\"YahooMyWeb\" border=\"0\"/></a>");
	}
}

