Mountain View Cemetery *
2 miles SE of Wedington, Washington County
* All legible headstones have been photographed as of 29 June 1999








Alle - E
Anderson - Robert A, Stella B Wife of A Boyd Wise
Bell - Ora May
Cantrel - Goldie
Cecil - son of
Cowan - Bulah, Irene, Louisa J, Nannie, Richard
Cuisinger - Oma Luther
Eads - Floyd
Ezell - Amy Marie, R F, Carl C, Daughter of R F & M A, Elizabeth Osburn, J D, Veneda A, Veneda A & Carl C, W F, W Harvey & Emma M
Greathouse - Ida Anderson
Hiez
Hollowell - Christin Taylor
Lock - J W, R L
Lowe - Cooper, Elizabeth, I C, Minnie, Mollie, Wayne
Luther - Back of Stone, Martin V, Vanda Stewart, William Van & Winnie Mae
Luttrell - Fred A, James R, J P & Ava, Mary F, S B
Maberry - Anna Irene & James M, Ava, E Loreene, James M, Nancy Layne & Thomas Frank, Orvis, Thomas Frank, Wife of J D
Magdaline - Mary
Mallory - David and Orlena, _ May
Maples - Mattie E, William T
McNeely - Infant Son of PB and IM
Neale - Virgie M and Joseph D
Peden - J O
Perry - Kennith Cleve
Ponder - _ _, Jeston
Robinson - NT
Scroggins - Jack Sam
Smith - Evalin
Templeton - Bettie E, Code T
Thompson - Elizabeth, Robert Bishop
Vincent - John Henry, Stella

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