// JavaScript Document

<!--
function Clickheretoprint()
{ 
  var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
      disp_setting+="scrollbars=yes,width=650, height=600, left=100, top=25"; 
  var content_vlue = document.getElementById("contentcontainer").innerHTML; 
  
  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><title>Cypress Creek Church - Printer Friendly Window</title><style type="text/css"><!--a:link {color:#000000;}a:visited {color: #000000;}h1 {font-family: Geneva, sans-serif, Arial, Helvetica;font-size: 16px;font-style: normal;line-height: normal;font-weight: normal;font-variant: normal;text-transform: uppercase;color: #000000;text-align: right;padding: 10px;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #000000;}h2 {font-family: Geneva, sans-serif, Arial, Helvetica;font-size: 14px;font-style: normal;line-height: normal;font-weight: normal;font-variant: normal;text-transform: none;color: #000000;text-align: left;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #000000;}.TEXTtinywhite {font-family: sans-serif, Arial, Helvetica;font-size: 10px;font-style: normal;line-height: normal;font-weight: normal;font-variant: normal;text-transform: none;color: #000000;}p {font-family: sans-serif, Arial, Helvetica;font-size: 12px;font-style: normal;line-height: normal;font-weight: normal;font-variant: normal;text-transform: none;color: #000000;}ul{font-family: sans-serif, Arial, Helvetica;font-size: 12px;font-style: normal;line-height: 16px;font-weight: normal;font-variant: normal;text-transform: none;color: #000000;}li {font-family: sans-serif, Arial, Helvetica;font-size: 12px;font-style: normal;line-height: 16px;font-weight: normal;font-variant: normal;text-transform: none;color: #000000;}th {font-family: sans-serif, Arial, Helvetica;	font-size: 12px;font-style: normal;	line-height: 16px;font-weight: normal;font-variant: normal;	text-transform: none;color: #000000;}td {font-family: sans-serif, Arial, Helvetica;font-size: 12px;font-style: normal;line-height: 16px;font-weight: normal;font-variant: normal;text-transform: none;color: #000000;}h3 {font-family: sans-serif, Arial, Helvetica;	font-size: 14px;font-style: normal;line-height: 16px;font-weight: bold;font-variant: normal;text-transform: none;color: #000000;}--></style>'); 
   docprint.document.write('</head><body onLoad="self.print()"><left>');          
   docprint.document.write(content_vlue);          
   docprint.document.write('</center></body></html>'); 
   docprint.document.close(); 
   docprint.focus(); 
}
-->