///////////////////// DSCRIPTS PRESENTS /////////////////////////////////////
//                                                                         //    
//   This script has been downloaded from http://dscripts.awardspace.com   //
//  ---------------------------------------------------------------------  //
//                                                                         //
//  Script Name: Javascript Include                                        //
//  Written on: 5 January 2007                                             //        
//  Written by: Burhan Uddin                                               //        
//                                                                         //      
//  Browse: http://dscripts.awardspace.com for more free scripts.          //
//                                                                         //
/////////////////////////////////////////////////////////////////////////////


// Script Begins from here ==================================//


// Declaring header footer and navigation as array variable

var header      = new Array();  // Header
var footer      = new Array();  // Footer

////////////////////////////// Edit Below //////////////////////////////


// ==================== Header ==================== //
header[0]       = '<table align="center" border="0" cellspacing="0" cellpadding="0">';
header[1]       = '<tbody>';
header[2]       = '<tr>';
header[3]       = '<td> <img src="images/header01.gif" border="0"></td>';
header[4]       = '</tr>';
header[5]       = '</tbody>';
header[6]       = '</table>';

// ==================== Footer ==================== //

footer[0]    	= '<table align="center" border="0" style="text-align: center; width: 794px; margin-left: auto; margin-right: auto;">';
footer[1]    	= '<tr><td><hr size="7" color="#4f7z9c"></td></tr></table>';
footer[2]    	= '<table align="center" border="0" style="text-align: center; width: 790px; margin-left: auto; margin-right:auto;" align="left" border="0">';
footer[3]    	= '<tr><td align="left" valign="top" style="text-align: left;">';
footer[4]    	= '<div style="vertical-align: top;" class="text10">Copyright &copy; 2010 Bethel Church PCA. All rights reserved.</td>';
footer[5]    	= '<td align="right" valign="top" style="text-align: right;">';
footer[6]    	= '<div style="vertical-align: top;" class="text10">Member of the';
footer[7]	= '<a href="http://www.ntpresby.org/" class="bluelink" target="North Texas Presbytery">North Texas Presbytery</a>,';
footer[8]    	= '<a href="http://www.pcanet.org/" class="bluelink" target="PCA">Presbyterian Church In America</a>';
footer[9]    	= '</td></tr></table>';

/////////////////////////////////// DO NOT EDIT BELOW ///////////////////////////


function show(i)
 {
  for (x in i)
  {
   document.write(i[x]+'\n')
  }
 }