var clean=1;
var pageName;
var dayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")
var now = new Date

function popbig( pageName ) {
  popup=open( pageName + ".htm", "popupbig", "width=600,height=700,resizeable=no" );
  clean=0;
  window.document.close;
}

function popscript( pageName ) {
  popup=open( "passages/" + pageName + ".htm", "popupscript", "width=500,height=150,resizeable=no,scrollbars=1" );
  clean=0;
  window.document.close;
}

function endpop() {
  if ( clean!=1 && !popup.closed ) {
    popup.close();
  }
}


function PrintDate () {
//  document.write(dayName[now.getDay()] + ", " + monName[now.getMonth()] + " " + now.getDate() + ", " + now.getYear())
}


function PrintFooter ( lastupdt ) {
  document.write('<HR>');
//  document.write('<DIV id=footer>© 2004-2008 by the Clinton Church Of Christ');
document.write('<DIV id=footer>');
  document.write('<BR>This page was last updated: ');
  document.write(lastupdt.split(" ",3).slice(2));
  document.write('</DIV>');
}


function PrintAddress () {
  document.write('<DIV class=small>');
  document.write('<B>CLINTON CHURCH OF CHRIST </B><BR>');
  document.write('5450 EVANS ROAD <BR>');
  document.write('CLINTON, IL 61727 <BR>');
  document.write('UNITED STATES <BR>');
  document.write('</DIV>');
}



function PrintMeetingTimes () {
  document.write('<B STYLE="TEXT-ALIGN: center;">Our Meeting Times</B>');
//  document.write('<BR>');
  document.write('<DIV class=small>');
//  document.write('<UL>');
  document.write('Sunday Morning Bible Study: 9:00 AM');
  document.write('<BR>Sunday AM Worship: 10:00 AM');
  document.write('<BR>Sunday PM Worship: 6:00 PM');
  document.write('<BR>Wednesday Night Bible Study: 7:00 PM</B>');
//  document.write('</UL>');
  document.write('</DIV>');
}



function PrintNavLinks () {
  document.write('<P><A href="index.htm">Home</A>');
  document.write('<P><A href="salvation.htm">Are <U>You</U> Saved?</A>');
  document.write('<P><A href="about.htm">About the church of Christ</A>');
  document.write('<P><A href="requestmaterials.htm">Request Free Materials</A>');
  document.write('<P><A href="contact.htm">Contact Us</A>');
  document.write('<P><A href="mapto.htm">Directions</A>');
 // document.write('<P><A class="popup" href="javascript:popbig('directions')">Directions</A>');
}


function PrintHeader () {
//  document.write('<TABLE BORDER=1 WIDTH=80% CELLPADDING=15 ALIGN=CENTER>');
// document.write('<TR>');
//  document.write('<TD COLSPAN=3 HEIGHT=100 VALIGN=CENTER background="images\clouds2.jpg">');
//  document.write('<H2 STYLE="COLOR: white;">Clinton Church Of Christ</H2>');
//  document.write('</TD>');
//  document.write('</TR>');
//  document.write('</TABLE>');
}