//
//                                            footer.js
//
//
//   This file contains utilities used in the footer of each page.  Change in one file and you have changes
//   in all files.  This file is changed to update the:
//       - Copyright.
//       - Webmaster e-mail address
//   
//    Additionally, this file contains a method for automatically changing the modification date.
//  

//
//    modificationDate
//
//    This provides a method for automatically generating a modification date update
//
//
function modificationDate() {

   var modDate = new Date(document.lastModified)
   var modYear = modDate.getYear()
   var montharray= new Array("January","February","March","April","May","June","July","August","September","October","November","December") ;


  if(modYear<1000) modYear+=1900
       
  document.write("Updated: " + montharray[modDate.getMonth()] + " " + 
                  modDate.getDate() + ", " + (modYear+"").substring(0,4))
}
//
//    webmasterAddress
//
//    Change the webmasterAddress here and it changes everywhere on the site.
//    Also, this is broken up so that web crawlers have trouble locating the webmaster address 
//    to send out spam to the webmaster.
//
function webmasterMail() {
    
    var id = "Webmaster" ;                                  // webmaster id.

    document.write('<A HREF="mailto:' + id + '@' + 'OceanFrontRE.net">' + id + '</a>') ;  
                                                                         
}
function billsMail() {
    return ("mailto:bill@OceanFrontRE.net?subject=Message from the Bill Jacobs Real Estate website.") ;
}

//
//    copyright
//
//    Change the copyright here and it changes everywhere on the site.
//
function copyright() {
    document.write("Copyright 1997 - 2006") ;
}