
     function PageLastUpdated(){
       document.writeln("Last Updated: "+document.lastModified);   
     }
     
//
// format date as dd-mmm-yy
// example: 12-Jan-99
//
function date_ddmmmyy(date)
{
  var d = date.getDate();
  var m = date.getMonth() + 1;
  var y = date.getYear();
  // handle different year values 
  // returned by IE and NS in 
  // the year 2000.
  if(y >= 2000)
  {
    y -= 2000;
  }
  if(y >= 100)
  {
    y -= 100;
  }

  
  document.writeln("Last updated: " + m +  "/" + (d<10?"0"+d:d) + "/" +    (y<10?"0"+y:y));
}


function WriteFooter() {

document.write('<table width=789 cellpadding=0 cellspacing=3 border=0 style="border-collapse: collapse" bordercolor="#111111">');
document.write('<tr><td valign="top" width="780" bgcolor="#D6835B" colspan="2" height="20"></td></tr>');
document.write('</td><td valign="top">');
document.write('<p align="center"><font face="Verdana">');
document.write('<span class="ContactInfo"><font size="2">(513) 752-2525</font></span><font size="2"><br>');
document.write('<span class="ContactInfo">1177 W. Ohio Pike (State Route 125)</span><br>');
document.write('<span class="ContactInfo">Amelia, Ohio 45102</span></font></font></p>');
document.write('<p align="center"><span class="ContactInfo"><font size="2">Email:');
document.write('<a href="mailto:office@calvin-pc.org?subject=Request for Calvin Presbyterian Church Office">office@calvin-pc.org</a> </font></span></p>');
document.write('<p align="center"><font face="Verdana" size="2"><span class="ContactInfo">© 2011 Calvin Presbyterian Church, All Rights Reserved</span>');
document.write('</font>');
document.write('<br> <font face="Verdana" size="2">Web by  <a href="mailto:newsletter@calvin-pc.org?subject=Calvin Presbyterian Church Website">  DJ Steiner</a></font>');
document.write('</td></tr></table>');


}

function WriteFooterNew() {


document.write('<p align="center"><font face="Verdana" >');
document.write('<span class="ContactInfo"><font size="2" color="#FFFFFF">(513) 752-2525</font></span><font size="2" color="#FFFFFF"><br>');
document.write('<span class="ContactInfo">1177 W. Ohio Pike (State Route 125)</span><br>');
document.write('<span class="ContactInfo">Amelia, Ohio 45102</span></font></font></p>');
document.write('<p align="center"><span class="ContactInfo"><font size="2" color="#FFFFFF">Email: ');
document.write('<a href="mailto:office@calvin-pc.org?subject=Request for Calvin Presbyterian Church Office"><font color="#FFFFFF">office@calvin-pc.org</font></a> </font></span></p>');
document.write('<p align="center"><font face="Verdana" size="2" color="#FFFFFF"><span class="ContactInfo">© 2011 Calvin Presbyterian Church, All Rights Reserved</span>');
document.write('</font>');
document.write('<br> <font face="Verdana" size="2" color="#FFFFFF">Web by  <font color="#FFFFFF"> Creations@Pandb</font></a></font>');



}



