initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:36:05 -06:00
commit e85327b977
1953 changed files with 176586 additions and 0 deletions

File diff suppressed because one or more lines are too long

2
_info/security.txt Normal file
View File

@@ -0,0 +1,2 @@
Warren4
L&Warren007

2616
archive/version_01/Tie/File.pm Executable file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,8 @@
2003.10.01 13:47 A C:\Documents and Settings\Benjamin Ramey\My Documents\PERL\Tie-File-0.96\lib\Tie\File.pm --> ftp02.powweb.com /cgi-bin/lib/Tie File.pm
2003.10.01 14:04 A C:\Documents and Settings\Benjamin Ramey\My Documents\PERL\Tie-File-0.96\lib\Tie\File.pm --> ftp02.powweb.com /htdocs/scripts/lib/Tie File.pm
2003.10.01 14:04 A C:\Documents and Settings\Benjamin Ramey\My Documents\PERL\Tie-File-0.96\lib\Tie\WS_FTP.LOG --> ftp02.powweb.com /htdocs/scripts/lib/Tie WS_FTP.LOG
2003.11.29 09:48 A C:\Documents and Settings\Benjamin Ramey\My Documents\HTML\bookreviews\scripts\Tie\File.pm --> ftp02.powweb.com /cgi-bin/Tie File.pm
2003.11.29 09:48 A C:\Documents and Settings\Benjamin Ramey\My Documents\HTML\bookreviews\scripts\Tie\WS_FTP.LOG --> ftp02.powweb.com /cgi-bin/Tie WS_FTP.LOG
2004.02.26 14:41 A C:\Documents and Settings\Benjamin Ramey\My Documents\HTML\bookreviews\scripts\Tie\File.pm --> ftp02.powweb.com /htdocs/DTN/Tie File.pm
2004.11.29 00:02 B C:\Documents and Settings\Benjamin Ramey\My Documents\HTML\DTN\Tie\WS_FTP.LOG <-- rameydesign.net /htdocs/other/DTN/Tie WS_FTP.LOG
2004.11.29 16:58 A C:\Documents and Settings\Benjamin Ramey\My Documents\HTML\DTN\Tie\File.pm --> hosting2.123-reg.co.uk /Tie File.pm

12
archive/version_01/albums.js Executable file
View File

@@ -0,0 +1,12 @@
// JavaScript for photo albums to display larger version of picture
function Show_Large_Photo()
{
var photo_path = document.mainImage.src;
var take_out = "/small_";
var put_in = "/";
photo_path = photo_path.replace( take_out, put_in );
window.open( "large_image.htm?image=" + photo_path, "_blank", "height=600, width=840, scrollbars=yes, resizable=yes" );
}

120
archive/version_01/albums.pl Executable file
View File

@@ -0,0 +1,120 @@
#! /usr/bin/perl -w
#
########################################
#
# script to edit DTN site content
# written by benjamin ramey
# bsr@rameydesign.net
# december, 2004
#
########################################
if( $ENV{ 'REQUEST_METHOD' } eq 'GET' )
{
$album = $ENV{ 'QUERY_STRING' }; #get the input string
$album =~ s/.*\=(.*)/$1/; #just take the latter part. this is very specific to my purposes, I know I will only have one variable in the query string and I know what that is (the album to load)
}
print "Content-type: text/html\n\n";
opendir( ALBUM_DIR, "./graphics/media/albums/$album/" ) or print "<span style='color: red'>Cannot open $album dir.</span>\n\n";
my @photos = grep { not m/^\.\.?\z/ } readdir ALBUM_DIR; #won't read the . and .. directories
@photos = grep { /small_.*\.((jpg)|(JPG))\z/ } @photos;
closedir( ALBUM_DIR );
open( INFILE, "./data/media_data.txt" ) or print "<span style='font-weight: bold; color: red'>ERROR: Could not open media_data.txt.</span>";
my @inside_albums = ( "\n" );
my $parent_album = 'none';
while( (my $file_line = <INFILE>) && ($file_line !~ m/<\/albumsection>/) )
{
if( $file_line =~ m/<name>(.*)<\/name>/ ) { $album_name = $1; }
if( $file_line =~ m/<inside>(.*)<\/inside>/ )
{
$inside_field = $1;
if( $inside_field eq $album )
{
$file_line = <INFILE>;
if( $file_line =~ m/<imagefolder>(.*)<\/imagefolder>/ ) { $album_imagefolder = $1; }
my @sub_album = ("\t<a href=\"javascript:parent.location='albums.pl?album=$album_imagefolder'\">\n",
"\t\t<img src=\"../graphics/media/album_icon.gif\" border=\"0\"></a><br>\n",
"\t\t$album_name\n",
"\t\t<br> <br>\n\n" );
push( @inside_albums, @sub_album );
}
}
if( $file_line =~ m/<imagefolder>(.*)<\/imagefolder>/ )
{
if( $1 eq $album ) { $parent_album = $inside_field; }
}
}
close( INFILE );
print<<"HTML";
<html>
<head><title>Photo Album</title>
<script language="javascript" type="text/javascript">
<!--
function Main_Image( image )
{
var main_image = "mainImage";
document[ main_image ].src = "./graphics/media/albums/$album/" + image;
}
-->
</script>
<style type="text/css">
body { margin: 0px; }
img { padding: 5px; }
body
{
scrollbar-face-color: #333333;
scrollbar-shadow-color: #000000;
scrollbar-highlight-color: #000000;
scrollbar-3dlight-color: #000000;
scrollbar-darkshadow-color: #000000;
scrollbar-track-color: #000000;
scrollbar-arrow-color: #000000;
}
</style>
<script language="javascript" type="text/javascript" src="../albums.js">
</head>
<body style="background-color: #000000; color: #CCCCCC; font-family:Arial, Helvetica, sans-serif; font-size: 12px;">
<div align="center" id="index" style="position:absolute; left: 10px; top: 40px; width: 130px; height: 400px; overflow: auto;border-width: 2px;border-color: #333333; border-style: solid;padding-top: 10px;">
HTML
if( $parent_album ne 'none' ) { print "<a href=\"albums.pl?album=$parent_album\" style=\"font-weight: bold; color: #CCCCCC; font-family: Arial, Helvetica, sans-serif\">Back to previous<br />album</a><br /> <br />\n\n"; } #if this is a nested album, print the link to the parent album
foreach $insider ( @inside_albums )
{
print $insider;
}
foreach $photo ( @photos )
{
$photo =~ s/([ ,\',\",\\,\/,-])/sprintf( "%%%lx", (unpack( "C", $1 )) )/eg;
print "<a href='javascript:Main_Image( \"$photo\" )'><img src='./graphics/media/albums/$album/$photo' width='80' border='0' /></a>\n";
}
$first_photo = $photos[ 0 ];
$first_photo =~ s/([ ,\',\",\\,\/,-])/sprintf( "%%%lx", (unpack( "C", $1 )) )/eg;
print<<"HTML";
</div>
<div align="center" style="position: absolute; left: 160px; top: 40px; overflow: auto; height: 480px; width: 430px;">
<img src="./graphics/media/albums/$album/$first_photo" id="mainImage" name="mainImage" style="border-style: solid; border-width: 1px; border-color: #333333;" /><br /><br />
<a href="javascript:Show_Large_Photo();" style="font-weight: bold; color: #CCCCCC; font-family: Arial, Helvetica, sans-serif">Click here for larger image</a>
</div>
</body>
</html>
HTML
exit;

View File

@@ -0,0 +1,54 @@
<links>
<page name="whoweare.pl">
<email>DtNations\@CompuServe.com=DtNations@CompuServe.com</email>
<link>www.discipling-the-nations.org=http://www.discipling-the-nations.org</link>
<email>Wayne.Whitbourne\@ActionCanada.net=Wayne.Whitbourne@ActionCanada.net</email>
<link>www.ActionCanada.net=http://www.ActionCanada.net</link>
<link>Action International Ministries: International=http://www.actionintl.org</link>
<link>Action International Ministries: UK=http://www.actionuk.org</link>
<email>TheCarters\@CompuServe.com=TheCarters@CompuServe.com</email>
<email>KJMcKee\@sbceo.org=KJMcKee@sbceo.org</email>
<email>Steve\@ResourceLinks.org=Steve@ResourceLinks.org</email>
<email>S.Walt\@aon.at=S.Walt@aon.at</email>
<anchor>introduction=#introduction</anchor>
<anchor>contact info=#contact_info</anchor>
<anchor>tax exempt status=#tax</anchor>
<anchor>purpose statement=#purpose_statement</anchor>
<anchor>mission statement=#mission_statement</anchor>
<anchor>core values=#core_values</anchor>
<anchor>statement of faith=#statement_faith</anchor>
<anchor>board & advisors=#board_advisors</anchor>
<anchor>vision for ministry=#vision_for_ministry</anchor>
<anchor>goals and objectives=#goals_objectives</anchor>
<anchor>how can you partner?=#partner</anchor>
<link>ramey design=http://www.rameydesign.net</link>
</page>
<page name="resources.pl">
<anchor>articles=#articles</anchor>
<anchor>books & other info=#books_other_info</anchor>
<anchor>on leadership=#on_leadership</anchor>
<anchor>teaching outlines=#teaching_outlines</anchor>
<anchor>tools for min.: local church=#tools_for_min</anchor>
<anchor>tools for personal=#tools_for_personal</anchor>
<anchor>links=#links</anchor>
<link>ramey design=http://www.rameydesign.net</link>
</page>
<page name="prayer.pl">
<anchor>carter's ministry calendar=#carters_ministry_cal</anchor>
<anchor>e-mail updates=#email_updates</anchor>
<anchor>prayer letter=#prayer_letter</anchor>
<link>ramey design=http://www.rameydesign.net</link>
</page>
<page name="travel.pl">
<anchor>carter's ministry calendar=#carters_ministry_cal</anchor>
<anchor>short term opportunities=#short_term_opp</anchor>
<anchor>information on europe=#information_on_europe</anchor>
<anchor>travel info=#travel_info</anchor>
<link>ramey design=http://www.rameydesign.net</link>
</page>
<page name="media.pl">
<anchor>photo albums=#photo_albums</anchor>
<anchor>videos=#videos</anchor>
<link>ramey design=http://www.rameydesign.net</link>
</page>
</links>

View File

@@ -0,0 +1,81 @@
<mediadata>
<albumsection>
<album>
<name>DtN Family</name>
<inside>none</inside>
<imagefolder>dtn_family</imagefolder>
</album>
<album>
<name>Teaching</name>
<inside>none</inside>
<imagefolder>teaching</imagefolder>
</album>
<album>
<name>Prayer Summits</name>
<inside>none</inside>
<imagefolder>prayer_summits</imagefolder>
</album>
<album>
<name>Mentoring</name>
<inside>none</inside>
<imagefolder>mentoring</imagefolder>
</album>
<album>
<name>Leanne: women's ministry</name>
<inside>none</inside>
<imagefolder>leanne</imagefolder>
</album>
<album>
<name>Tribuswinkel, Austria DtN Ministry Center</name>
<inside>none</inside>
<imagefolder>tribuswinkel</imagefolder>
</album>
<album>
<name>Carter Family</name>
<inside>none</inside>
<imagefolder>carter_family</imagefolder>
</album>
<album>
<name>12-03 Prayer Letter</name>
<inside>carter_family</inside>
<imagefolder>12-03_prayer_letter</imagefolder>
</album>
<album>
<name>3-04 Prayer Letter</name>
<inside>carter_family</inside>
<imagefolder>3-04_prayer_letter</imagefolder>
</album>
<album>
<name>Friends and Neighbors</name>
<inside>carter_family</inside>
<imagefolder>friends_and_neighbors</imagefolder>
</album>
</albumsection>
<videosection>
<video>
<name>Warren Teaching</name>
<file>Warren%20teaching%20PL%20ch%20conf.mov</file>
<link>video_Warren%20teaching%20PL%20ch%20conf.htm</link>
<image>graphics/media/video_thumbs/warren_teaching.jpg</image>
</video>
<video>
<name>Jonathan at kindergarten</name>
<file>Jonathan%20at%20Kindergarten3%206%2d03.mov</file>
<link>video_Jonathan%20at%20Kindergarten3%206%2d03.htm</link>
<image>graphics/media/video_thumbs/jonathan_kindergarten.jpg</image>
</video>
<video>
<name>Chapel Christmas pageant</name>
<file>Chapel%20Christmas%20pageant%201.mov</file>
<link>video_Chapel%20Christmas%20pageant%201.htm</link>
<image>graphics/media/video_thumbs/chapel_pageant.jpg</image>
</video>
<video>
<name>Davey and the slide</name>
<file>Davey%20and%20the%20slide%202.mov</file>
<link>video_Davey%20and%20the%20slide%202.htm</link>
<image>graphics/media/video_thumbs/davey_slide.jpg</image>
</video>
</videosection>
</mediadata>

View File

@@ -0,0 +1,199 @@
<resources>
<articlesection>
<article>
<title>Call to Evangelize Emergent Generation</title>
<link>call to evangelize emergent generation.htm</link>
</article>
<article>
<title>Experiencing God Principles</title>
<link>Experiencing God principles.htm</link>
</article>
<article>
<title>Fed Up With Prayer</title>
<link>fed up with prayer.htm</link>
</article>
<article>
<title>Kids Prayer</title>
<link>Kids Prayer.htm</link>
</article>
<article>
<title>Porter Barrington on Prayer</title>
<link>Porter Barrington on Prayer.htm</link>
</article>
<article>
<title>Preparation for a Day of Prayer</title>
<link>preparation for a day of prayer.htm</link>
</article>
<article>
<title>Purposes of Lord's Table</title>
<link>purposes of Lord's Table.htm</link>
</article>
<article>
<title>Rest</title>
<link>Rest.htm</link>
</article>
<article>
<title>Servanthood Partnership Principles</title>
<link>Servanthood Partnership principles.htm</link>
</article>
<article>
<title>Spiritual Formation</title>
<link>Spiritual Formation.htm</link>
</article>
<article>
<title>Teach Kids To Pray</title>
<link>Teach Kids 2 pray.htm</link>
</article>
<article>
<title>The Orthodox Church & Easter</title>
<link>the Orthodox Ch & Easter.htm</link>
</article>
<article>
<title>Why Churches Fail</title>
<link>Why Ch's Fail.htm</link>
</article>
</articlesection>
<books_otherinfo>
<subsection>
<name>Church Planting</name>
<files>church planting mat'ls.htm</files>
</subsection>
<subsection>
<name>City Reaching</name>
<files>city reaching books.htm,City Reaching track 2-03.htm</files>
</subsection>
<subsection>
<name>Hope for the Wounded</name>
<files>Function of Group Leaders.htm,HfW values.htm,Process of Recovery.htm,Responding to a Story.htm</files>
</subsection>
<subsection>
<name>Prayer</name>
<files>40 day prayer outline.htm,prayer bibliographies.htm,Prayer formats.htm</files>
</subsection>
<subsection>
<name>Reading - plan to read</name>
<files>books.htm</files>
</subsection>
</books_otherinfo>
<onleadership>
<file>character qualities for leaders.htm</file>
<file>Ldrship Notes1-98.htm</file>
<file>Ldrship Notes2-98.htm</file>
<file>leadership principles.htm</file>
<file>Mentor Reflections.htm</file>
<file>Mentoring Group Covenant.htm</file>
<file>Partnership principles.htm</file>
<file>Philosophy of Ministry discussion.htm</file>
</onleadership>
<teachingoutlines>
<file>God speaks.htm</file>
<file>Jesus - the bread of life.htm</file>
<file>Leah's in your life.htm</file>
<file>maturing in Christ.htm</file>
<file>Mentor Reflections.htm</file>
<file>prayer life of the disciple.htm</file>
<file>Prayer Principles from II Chron 6.htm</file>
<file>Prayer Principles.htm</file>
<file>Thanksgiving.htm</file>
</teachingoutlines>
<toolsforministry>
<top>
<file>C-O-N-N-E-C-T with missionaries.htm</file>
<file>discipleship teaching-sermon outline for 2 years.htm</file>
<file>Minister's review form.htm</file>
<file>ministry leader commitment form.htm</file>
<file>PLACE program.htm</file>
<file>Pulpit guidelines.htm</file>
<file>role of church leaders.htm</file>
<file>typical Child Dedication ceremony.htm</file>
<file>well-conceived Mission Plans.htm</file>
</top>
<subsection>
<name>Evangelism Training Materials</name>
<file>Evan - 6 Steps ohp.htm</file>
<file>Evan - 6 Steps.htm</file>
<file>Evan - Deutsche tract.htm</file>
<file>Evan - Talking re Eternal Life ohp.htm</file>
<file>Evan - Talking re Eternal Life.htm</file>
<file>Evan - verse list.htm</file>
<file>Evan - wallet card.htm</file>
</subsection>
<subsection>
<name>Short-term Mission Teams</name>
<file>E-CE case study.htm</file>
<file>Servant leader teams.htm</file>
<file>short-term teams logistics worksheets.htm</file>
<file>Trip De-brief.htm</file>
</subsection>
<subsection>
<name>Small Group Ministry</name>
<file>books for Small Grps to study.htm</file>
<file>dev'g Bible study questions.htm</file>
<file>goetz - Small Groups - article in ct.htm</file>
<file>hestenes - turning cummittees into communities.htm</file>
<file>randy frazee interview.htm</file>
<file>sample format for Sm Grps - auf Deutsche.htm</file>
<file>Sm Grp Functions Beliefs Practices Virtues.htm</file>
<file>Sm Grp Leadership Summit '03.pdf</file>
<file>Sm Grp resources auf Deutsche.htm</file>
<file>small group leader resources.htm</file>
<subsection>
<name>hosanna sm grp resources</name>
<file>hosanna different types of small groups.htm</file>
<file>hosanna highway - path of growth.htm</file>
<file>hosanna lutheran travelGuide.pdf</file>
</subsection>
<subsection>
<name>north heights sm grp resources</name>
<file>Becoming a Sm Grp Ldr.htm</file>
<file>encouragement to join or lead a Sm Grp.htm</file>
<file>Form Your Own Sm Grp.htm</file>
<file>Sm Grp description for publicity.htm</file>
<file>Sm Grp Ldr Appl'n.htm</file>
<file>Sm Grp Ldr Testimony.htm</file>
<file>Sm Grp Listing.htm</file>
<file>Sm Grp Publicity Guidelines.htm</file>
<file>Sm Grp Regis'n.htm</file>
</subsection>
<subsection>
<name>serendipity sm grp resources</name>
<file>Application to join Sm Grp.pdf</file>
<file>evaluating your Sm Grp experience.pdf</file>
<file>Felt Needs Survey.pdf</file>
<file>Grp job descriptions.pdf</file>
<file>Grp Ldr Application.pdf</file>
<file>Grp Ldr Goals.pdf</file>
<file>Ldr training outline.pdf</file>
<file>Meeting Format.pdf</file>
<file>Meeting Prep'n.pdf</file>
<file>Sm Grp Clip Art.pdf</file>
<file>Sm Grp Covenant.pdf</file>
<file>Sm Grp Ldr's report.pdf</file>
<file>Sp Growth Survey.pdf</file>
<file>'The Door'.pdf</file>
<file>Tracking Card.pdf</file>
<file>Which Grp to attend.pdf</file>
<file>Which Grp to Lead.pdf</file>
</subsection>
</subsection>
</toolsforministry>
<toolsforpersonal>
<top>
<file>Daily Prayer for Freedom.htm</file>
<file>discerning God.htm</file>
<file>Parenting Principles from Proverbs.htm</file>
<file>Purpose Statement Worksheet.htm</file>
<file>steps to spiritual maturity.htm</file>
<file>Who-Am-I.htm</file>
</top>
<subsection>
<name>how to study a book of the Bible</name>
<file>outline - Dt.htm</file>
<file>overview - Dt.htm</file>
<file>purpose - Dt.htm</file>
<file>structure -- Chiasmus - Dt.htm</file>
<file>structure - Dt.htm</file>
</subsection>
</toolsforpersonal>
</resources>

View File

@@ -0,0 +1,24 @@
<traveldata>
<cartercalender>
<entry>
<date>13.3.04</date>
<file>./ministry_moments/13.3.04.htm</file>
<summary>dearest family, warm greetings to you from Austria, in the precious name of our Lord
<br />
<br />this will be a short prayer request about an exciting up-coming ministry opportunity for Leanne ... she's just written her sister to ask her to pray, and I asked if we could send it out to all of you for...</summary>
</entry>
<entry>
<date>9.Feb.04</date>
<file>./ministry_moments/9.Feb.04.htm</file>
<summary>dear ones, this will be a short note to you all, with a number of strategic ministry events for you to pray for:
<br />
<br />Tues, 10.Feb
<br />a.m. meeting for our city reaching ministry team [Pray Vienna]
<br />
<br />p.m. meet with our local pastor to encourage him
<br />
<br />Leanne's a.m. leadership...</summary>
</entry>
<entry>
<date>18.Jan.04</date>
<file>./ministry_moments/18.Jan.04.htm</file>

1676
archive/version_01/dtn.cgi Executable file

File diff suppressed because it is too large Load Diff

225
archive/version_01/dtn.css Executable file
View File

@@ -0,0 +1,225 @@
/*CSS for Discipling the Nations*/
A.ssmItems:link {color:#333333;text-decoration:none;}
A.ssmItems:hover {color:#333333;text-decoration:none;}
A.ssmItems:active {color:black;text-decoration:none;}
A.ssmItems:visited {color:#666666;text-decoration:none;}
.sub_link_div
{
border-width: 1px 0px 1px 0px;
border-style: solid;
border-color: #B0111F;
padding: 6px;
margin-top: 20px;
}
.sub_link_table
{
font-size: 14px;
font-variant: small-caps;
}
a.sub_link_table:link
{
color:#B0111F;
text-decoration:none;
}
a.sub_link_table:visited
{
color:#B0111F;
text-decoration:none;
}
a.sub_link_table:hover
{
color: #333333;
text-decoration:underline;
}
a.location:link
{
color: #333333;
text-decoration: none;
}
a.location:hover
{
color: #CCCCCC;
text-decoration: underline;
}
a.location:visited:
{
color: #333333;
text-decoration: none;
}
.body_index
{
font-family: Arial, Helvetica, sans-serif;
background-image: url( graphics/index/brown_bg.gif );
margin: 0px;
}
div
{
font-family: Arial, Helvetica, sans-serif;
}
p
{
font-size: 12px;
padding: 15px;
}
a:link
{
color: #333333;
text-decoration: none;
}
a:visited
{
color:#333333;
text-decoration: none;
}
a:hover
{
color: #666666;
text-decoration: underline;
}
.first_strip
{
background-color: #333333;
color: #999999;
font-size: 10px;
padding-bottom: 2px;
text-align: center;
}
a.first_strip:link
{
color: #999999;
}
a.first_strip:visited
{
color: #999999;
}
a.first_strip:hover
{
color: #CCCCCC;
text-decoration: underline;
}
.second_strip_top_index
{
background-image: url( graphics/index/second_strip_top-index.gif );
background-position: top;
background-repeat: repeat-x;
}
.second_strip_bottom_index
{
background-image: url( graphics/index/second_strip_bottom-index.gif );
background-position: bottom;
background-repeat: repeat-x;
}
.collage_table
{
background-image: url( graphics/index/austria_map_bg-index.jpg );
background-position: center;
background-repeat: no-repeat;
}
.background
{
position: absolute;
left: 50px;
top: 40px;
z-index: 0;
}
.center_table
{
z-index: 1;
}
.menu_top
{
position: absolute;
left: 660px;
top: 180px;
}
.menu
{
position: absolute;
left: 480px;
top: 180px;
visibility: visible;
border: solid black;
border-width: 2px 1px 2px 1px;
margin: 0px;
padding: 10px;
font-size: 14px;
color: #999999;
background-color: #000000;
width: 160px;
text-align: left;
}
.dtn_logo
{
position: absolute;
left: 352px;
top: 180px;
}
.top_anchor
{
font-size: 14px;
}
.location
{
color: #333333;
font-size: 12px;
}
div.wwa_btn
{
position: absolute;
left: 360px;
top: 48px;
}
div.res_btn
{
position: absolute;
left: 240px;
top: 88px;
}
div.prayer_btn
{
position: absolute;
left: 170px;
top: 189px;
}
div.travel_btn
{
position: absolute;
left: 241px;
top: 291px;
}
div.media_btn
{
position: absolute;
left: 360px;
top: 335px;
}

135
archive/version_01/dtn.js Executable file
View File

@@ -0,0 +1,135 @@
//JavaScript
//Javascript code for menu button rollover/rollout
//and preload of images
//and makes menus on home.htm appear
function Do_BG()
{
var scr_height = screen.availHeight;
window.resizeTo( 800, scr_height );
}
if( document.images )
{
var whoweare_btn = PreLoad( 'wwa' ); //pre-loading all the images, so they don't have to load
var resources_btn = PreLoad( 'res' ); //when the user actually places the mouse over them,
var prayer_btn = PreLoad( 'prayer' ); //by loading them into a var for each one
var travel_btn = PreLoad( 'travel' );
var media_btn = PreLoad( 'media' );
}
function PreLoad( btn )
{
var img_path = "graphics/buttons/"; //file path to find button images
var temp = new Array();
temp[ 0 ] = new Image(); //don't know which image we're actually loading
temp[ 1 ] = new Image(); //so format temp to hold an image, any image
//then we can use .src to load each button img
temp[ 0 ].src = img_path + "home_" + btn + "_btn1.gif"; //first version: no mouse over image
temp[ 1 ].src = img_path + "home_" + btn + "_btn2.gif"; //second version: mouse over image
return temp;
}
function Swap( btn, mouse_on ) //reads img name from page and which version of the img
{
var btn_name = ( "menu_" + btn ); //(mouse_on) then inserts correct one
if( document.images )
{
var temp = eval( btn + "_btn" );
document[ btn_name ].src = temp[ mouse_on ].src;
}
}
function Menu( menu )
{
var menu_div = document.getElementById( "contents" );
var whoweare = "<a href=\"whoweare.pl\">WHO WE ARE</a><br /> "+
"<a href=\"whoweare.pl\#introduction\">=> introduction</a><br /> "+
"<a href=\"whoweare.pl\#contact_info\">=> contact info</a><br />"+
"<a href=\"whoweare.pl\#tax\">=> tax exempt status</a><br />"+
"<a href=\"whoweare.pl\#purpose_statement\">=> purpose statement</a><br />"+
"<a href=\"whoweare.pl\#mission_statement\">=> mission statement</a><br />"+
"<a href=\"whoweare.pl\#core_values\">=> core values</a><br />"+
"<a href=\"whoweare.pl\#statement_faith\">=> statement of faith</a><br />"+
"<a href=\"whoweare.pl\#board_advisors\">=> board & advisors</a><br />"+
"<a href=\"whoweare.pl\#vision_for_ministry\">=> vision for ministry</a><br />"+
"<a href=\"whoweare.pl\#goals_objectives\">=> goals and objectives</a><br />"+
"<a href=\"whoweare.pl\#partner\">=> how can you partner?</a><br />"+
"<a href=\"whoweare.pl\#child_protection\">=> child protection policy</a>";
var resources = "<a href=\"resources.pl\">RESOURCES</a><br /> "+
"<a href=\"resources.pl\#articles\">=> articles</a><br />"+
"<a href=\"resources.pl\#books_other_info\">=> books & other info</a><br />"+
"<a href=\"resources.pl\#on_leadership\">=> on leadership</a><br />"+
"<a href=\"resources.pl\#teaching_outlines\">=> teaching outlines</a><br />"+
"<a href=\"resources.pl\#tools_for_min\">=> tools for ministry</a><br />"+
"<a href=\"resources.pl\#tools_for_personal\">=> tools for personal</a><br />"+
"<a href=\"resources.pl\#links\">=> links</a>";
var prayer = "<a href=\"prayer.pl\">PRAYER REQUESTS</a><br /> "+
"<a href=\"prayer.pl\#carters_ministry_cal\">=> carter's min. calender</a><br />"+
"<a href=\"prayer.pl\#email_updates\">=> e-mail updates</a><br />"+
"<a href=\"prayer.pl\#prayer_update\">=> prayer letter</a>";
var travel = "<a href=\"travel.pl\">MISSION & TRAVEL</a><br /> "+
"<a href=\"travel.pl\#carters_ministry_cal\">=> carter's min. calender</a><br />"+
"<a href=\"travel.pl\#short_term_opp\">=> short term opp's</a><br />"+
"<a href=\"travel.pl\#information_on_europe\">=> information on europe</a>";
var media = "<a href=\"media.pl\">PHOTOS / VIDEOS</a><br /> "+
"<a href=\"media.pl\#photo_albums\">=> photo albums</a><br />"+
"<a href=\"media.pl\#videos\">=> videos</a>";
var opening_message = "<b>Welcome to the Discipling the Nations website!<br>"+
"<br />"+
"Please take some time to browse around the site, using the"+
" links to the left!</b>";
if( menu == 'body' )
{
menu_div.innerHTML = opening_message;
menu_div.style.background = "#000000";
menu_div.style.width = "160px";
menu_div.style.height = "128px";
}
else
{
if( menu == "whoweare" )
{
menu_div.innerHTML = whoweare;
menu_div.style.background = "#FFFFFF";
menu_div.style.width = "160px";
menu_div.style.height = "208px";
}
if( menu == "resources" )
{
menu_div.innerHTML = resources;
menu_div.style.background = "#FFFFFF";
menu_div.style.width = "160px";
menu_div.style.height = "125px";
}
if( menu == "prayer" )
{
menu_div.innerHTML = prayer;
menu_div.style.background = "#FFFFFF";
menu_div.style.width = "160px";
menu_div.style.height = "89px";
}
if( menu == "travel" )
{
menu_div.innerHTML = travel;
menu_div.style.background = "#FFFFFF";
menu_div.style.width = "160px";
menu_div.style.height = "89px";
}
if( menu == "media" )
{
menu_div.innerHTML = media;
menu_div.style.background = "#FFFFFF";
menu_div.style.width = "160px";
menu_div.style.height = "89px";
}
}
}

View File

@@ -0,0 +1,80 @@
/*CSS for Discipling the Nations*/
body
{
font-family: Arial, Helvetica, sans-serif;
background-image: url( graphics/media/orange-brown_bg_2.gif );
margin: 0px;
}
.second_strip_top
{
background-image: url( graphics/media/second_strip_top.gif );
background-position: top;
background-repeat: repeat-x;
}
.second_strip_bottom
{
background-image: url( graphics/media/second_strip_bottom.gif );
background-position: bottom;
background-repeat: repeat-x;
}
.content_table
{
background-image: url( graphics/media/orange-brown_bg.gif );
border: 3px solid #333333;
width: 100%;
}
.section_table
{
margin: 15px 15px 25px 15px;
background-image: url( graphics/media/orange-brown_bg.gif );
width: 95%;
}
.header
{
color: #B0111F;
font-family: Arial;
font-size: 18px;
border-width: 0px 0px 2px 0px;
border-style: solid;
border-color: #B0111F;
padding: 10px 10px 5px 0px;
background-image: url( graphics/media/orange-brown_bg.gif );
}
.corner
{
border-width: 0px 0px 2px 0px;
border-color: #B0111F;
border-style: solid;
background-image: url( graphics/media/orange-brown_bg.gif );
width: 10px;
}
.content_column
{
font-size: 12px;
padding: 15px;
}
.advisors_listing
{
border-width: 0px 1px 1px 0px;
border-color: black;
border-style: solid;
border-right-style: dashed;
width: 240px;
vertical-align: top;
}
.advisors_desc
{
border-width: 0px 0px 1px 0px;
border-color: black;
border-style: solid;
vertical-align: top;
}

View File

@@ -0,0 +1,81 @@
/*CSS for Discipling the Nations*/
body
{
font-family: Arial, Helvetica, sans-serif;
color: #000000;
background-image: url( graphics/prayer/dark-blue_bg.gif );
margin: 0px;
}
.second_strip_top
{
background-image: url( graphics/prayer/second_strip_top.gif );
background-position: top;
background-repeat: repeat-x;
}
.second_strip_bottom
{
background-image: url( graphics/prayer/second_strip_bottom.gif );
background-position: bottom;
background-repeat: repeat-x;
}
.content_table
{
background-image: url( graphics/prayer/light-blue_bg.gif );
border: 3px solid #333333;
width: 100%;
}
.section_table
{
margin: 15px 15px 25px 15px;
background-image: url( graphics/prayer/light-blue_bg.gif );
width: 95%;
}
.header
{
color: #B0111F;
font-family: Arial;
font-size: 18px;
border-width: 0px 0px 2px 0px;
border-style: solid;
border-color: #B0111F;
background-image: url( graphics/prayer/light-blue_bg.gif );
padding: 10px 10px 5px 0px;
}
.corner
{
border-width: 0px 0px 2px 0px;
border-color: #B0111F;
border-style: solid;
background-image: url( graphics/prayer/light-blue_bg.gif );
width: 10px;
}
.content_column
{
font-size: 12px;
padding: 15px;
}
.advisors_listing
{
border-width: 0px 1px 1px 0px;
border-color: black;
border-style: solid;
border-right-style: dashed;
width: 240px;
vertical-align: top;
}
.advisors_desc
{
border-width: 0px 0px 1px 0px;
border-color: black;
border-style: solid;
vertical-align: top;
}

View File

@@ -0,0 +1,80 @@
/*CSS for Discipling the Nations*/
body
{
font-family: Arial, Helvetica, sans-serif;
background-color: #999999;
margin: 0px;
}
.second_strip_top
{
background-image: url( graphics/resources/second_strip_top.gif );
background-position: top;
background-repeat: repeat-x;
}
.second_strip_bottom
{
background-image: url( graphics/resources/second_strip_bottom.gif );
background-position: bottom;
background-repeat: repeat-x;
}
.content_table
{
background-color: #CCCCCC;
border: 3px solid #333333;
width: 100%;
}
.section_table
{
margin: 15px 15px 25px 15px;
background-color: #CCCCCC;
width: 95%;
}
.header
{
color: #B0111F;
font-family: Arial;
font-size: 18px;
border-width: 0px 0px 2px 0px;
border-style: solid;
border-color: #B0111F;
padding: 10px 10px 5px 0px;
background-color: #CCCCCC;
}
.corner
{
border-width: 0px 0px 2px 0px;
border-color: #B0111F;
border-style: solid;
background-color: #CCCCCC;
width: 10px;
}
.content_column
{
font-size: 12px;
padding: 15px;
}
.advisors_listing
{
border-width: 0px 1px 1px 0px;
border-color: black;
border-style: solid;
border-right-style: dashed;
width: 240px;
vertical-align: top;
}
.advisors_desc
{
border-width: 0px 0px 1px 0px;
border-color: black;
border-style: solid;
vertical-align: top;
}

View File

@@ -0,0 +1,80 @@
/*CSS for Discipling the Nations*/
body
{
font-family: Arial, Helvetica, sans-serif;
background-image: url( graphics/travel/dark-green_bg.gif );
margin: 0px;
}
.second_strip_top
{
background-image: url( graphics/travel/second_strip_top.gif );
background-position: top;
background-repeat: repeat-x;
}
.second_strip_bottom
{
background-image: url( graphics/travel/second_strip_bottom.gif );
background-position: bottom;
background-repeat: repeat-x;
}
.content_table
{
background-image: url( graphics/travel/light-green_bg.gif );
border: 3px solid #333333;
width: 100%;
}
.section_table
{
margin: 15px 15px 25px 15px;
background-image: url( graphics/travel/light-green_bg.gif );
width: 95%;
}
.header
{
color: #B0111F;
font-family: Arial;
font-size: 18px;
border-width: 0px 0px 2px 0px;
border-style: solid;
border-color: #B0111F;
padding: 10px 10px 5px 0px;
background-image: url( graphics/travel/light-green_bg.gif );
}
.corner
{
border-width: 0px 0px 2px 0px;
border-color: #B0111F;
border-style: solid;
background-image: url( graphics/travel/light-green_bg.gif );
width: 10px;
}
.content_column
{
font-size: 12px;
padding: 15px;
}
.advisors_listing
{
border-width: 0px 1px 1px 0px;
border-color: black;
border-style: solid;
border-right-style: dashed;
width: 240px;
vertical-align: top;
}
.advisors_desc
{
border-width: 0px 0px 1px 0px;
border-color: black;
border-style: solid;
vertical-align: top;
}

View File

@@ -0,0 +1,80 @@
/*CSS for Discipling the Nations*/
body
{
font-family: Arial, Helvetica, sans-serif;
background-color: #999966;
margin: 0px;
}
.second_strip_top
{
background-image: url( graphics/whoweare/second_strip_top.gif );
background-position: top;
background-repeat: repeat-x;
}
.second_strip_bottom
{
background-image: url( graphics/whoweare/second_strip_bottom.gif );
background-position: bottom;
background-repeat: repeat-x;
}
.content_table
{
background-color: #CCCC99;
border: 3px solid #333333;
width: 100%;
}
.section_table
{
margin: 15px 15px 25px 15px;
background-color: #CCCC99;
width: 95%;
}
.header
{
color: #B0111F;
font-family: Arial;
font-size: 18px;
border-width: 0px 0px 2px 0px;
border-style: solid;
border-color: #B0111F;
padding: 10px 10px 5px 0px;
background-color: #CCCC99;
}
.corner
{
border-width: 0px 0px 2px 0px;
border-color: #B0111F;
border-style: solid;
background-color: #CCCC99;
width: 10px;
}
.content_column
{
font-size: 12px;
padding: 15px;
}
.advisors_listing
{
border-width: 0px 1px 0px 0px;
border-color: black;
border-style: solid;
border-right-style: dashed;
width: 240px;
vertical-align: top;
}
.advisors_desc
{
border-width: 0px 0px 0px 0px;
border-color: black;
border-style: solid;
vertical-align: top;
}

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/family photos/collage.png" />
<infoitem key="fw_slice_info" value="0 2bc 17c 0 0 2bc 17c 0" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/moto.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/media_btn1.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/media_btn2.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/prayer_btn1.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/prayer_btn2.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/resources_btn1.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/resources_btn2.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/travel_btn1.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/travel_btn2.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/whoweare_btn1.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/whoweare_btn2.png" />
</info>

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 603 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 588 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 624 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 613 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 596 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 587 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 579 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 574 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 640 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 624 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/collage_leftside.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/png and other graphics/collage_rightside.png" />
</info>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/moto gifs/moto.png" />
</info>

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 B

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<info>
<infoitem key="fw_source" value="/graphics/media/media_title.png" />
</info>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Some files were not shown because too many files have changed in this diff Show More