Johnson Cemetery aka Stucky Cemetery
At Johnson just west of the overpass.
Johnson Road, Johnson, AR






Austin - Grandma, James, Jessie and Oscar, Judahi
Baker - Eunice Conklin
Barron - Albert W, Daisy D and Albert W, Daisy D,  Mozel
Boatright - John R,  Mary L and John R,  Mary L
Boswell - Pearl and John
Brown - Kenneth R,  Lucy and Robert
Carrett - Robert, Susan
Claypool - Bertie M, Bertie M and James G, Cecil Lee, James G, Lily Mae, Myrtle Kisner, Osie Lucille, Winfield Scott
Clyde - Nathaniel Noe
Comodore - Hobart
Conklin - Betty Jean, Samuel L
Cox - Grandmother, Lydia B, Belle Loving and Samuel, Loy Dale, Lydia, Mary, Nathan, Pammelia, S, Son of Sam and Belle
Daughtery - Naoma, Polly
Dawson - Infant of Mr and Mrs Ira
Edward - Loyd
Garrett - J P
Hanks - Burl M, Infant son of Mr and Mrs WG, Maude E (Mason), Nathan and Maude, Nathan Virgil, Matilda M
Hart - Oscar E
Hearn - Amanda, Bethel, Eugene, Helen E, H S, Hiram
Howell - Betty Lou
Kisner - Eliza, Martha E
Langford - Kenneth E, Otis M, William P
Lockhart - Charles H and Esther M
Looper - Mary F
Luper - Archie E, Carrie B and Sim A, Doyle Merit, Emily, Flora and Alvin, Frank, Harriett, Hazel K and Everett F, Ina May and Leonard J Lynn, James E, Louisia J, Martha, M J, Olive E, Sam S, Wife of J A, W S Shep, S A Sr
Lyons - WM Everett
Martin - Calvin L, George M, Howard C, Mary P
Mason - Jaunita,  Marion D
Mayes - Infant son of Roscoe and Daisy
McMaster - Nettie and Charlie
McNeese - Robert L, Pauline B
Moody - Lizzie
Nickels - Angie Helen, William C
Nickles - James F
Peterson - Bulah Maxine, Cordelia and William R, Daisy Eaton, Emma, William Roy Jr.
Reid - DR J C
Ridgeway - Donna
Saylor - Zack W
Settle - Leean C, Vernia, William, William and Leean
Smith - Jonathan and Wife
Stuckey - John Mock, William Lycurgus
Sweeten - Bedford F
Thurmond  -  Bernice Marie, Infant of, James Monroe, Myrtle, Nathan P, Z, Zenobia
Thurwood - A
Wages - Sarah and AC
Waldrip - Baby, Reba Mae, Rena Fay, Ruth, Samuel A
Ward - Sampson
Washburn - Douglas W
White - Joseph L and Tempie C

Click here for Newspaper Obituaries    Click here for AIS Census Indexes
 


#!/usr/bin/perl ############################################################################## # Cliff's Banner Rotator Version 3.01 # # Copyright 1998 Shaven Ferret Productions # # Created 7/8/98 Last Modified 09/10/01 # # Available at http://www.shavenferret.com/scripts # ############################################################################## # COPYRIGHT NOTICE # # Copyright 1998 Shaven Ferret Productions All Rights Reserved. # # # # This script can be used free of charge so long as you don't change any # # part of it. By using this script you agree to indemnify me from any # # liability that might arise from its use. In simple English, if this # # script somehow makes your computer run amuck and kill the pope, it's not # # my fault. # # # # Redistributing\selling the code for this program without prior written # # consent is expressly forbidden. # ############################################################################## require "ad-lib.cgi"; &setup; open(FILE,"$datadir/main.txt"); @banners = ; close(FILE); print "Content-type: text/html\n\n"; srand; $i = int(rand(250)); if ($i != 64) { for ($i = $#banners; $i >= 0; $i--) { ($filenum,$weight,$inactive,$hideit,$hidetext,$hideact) = split(/\|/, $banners[$i]); if ($inactive == 0 && ($hideit == 0 || ($hideit && ($ENV{'DOCUMENT_URI'} =~ /$hidetext/ && $hideact == -1) || ($ENV{'DOCUMENT_URI'} !~ /$hidetext/ && $hideact == 0)))) { for ($j = 1; $j <= $weight; $j++) { splice(@okbanners,0,0,"$filenum|$i"); } } } $bannernum = int(rand($#okbanners+1)); ($filenum,$linenum) = split(/\|/,$okbanners[$bannernum]); open(FILE,"$datadir/h$filenum.txt"); @lines = ; close(FILE); print "$lines[1]"; ($trackctr,$java,$dimp,$imp,$dctr,$ctr,$ddate,$lmonth,$lday,$lyear,$conditions,$autoact,$email) = split(/\|/, $lines[0]); open(FILE,"$datadir/c$filenum.txt"); $temp = ; close(FILE); ($aimp,$actr) = split(/\|/,$temp); $aimp++; open(FILE,">$datadir/c$filenum.txt"); print FILE "$aimp|$actr"; close(FILE); if ($dimp || $dctr || $ddate) { &checkdel; } } # Changing or deleting the following line of this script is illegal. else { print "

Banner Rotator from Cliff's Perl Scripts

\n"; } sub checkdel { if ($dimp && $aimp >= $imp) { $true = -1; } elsif ($dimp) { $false = -1; } if ($dctr && $actr >= $ctr - 1) { $true = -1; } elsif ($dctr) { $false = -1; } if ($ddate) { &getdate; $lmonth++; if (($year > $lyear) || ($year == $lyear && $mon > $lmonth) || ($year == $lyear && $mon == $lmonth && $mday >= $lday)) { $true = -1; } else { $false = -1; } } if ($true && ($conditions == 0 || $false == 0)) { &deleteone; } }


Back to Washington County    Back to Arkansas Counties    Back to Jean-ealogy.com home