/*

  windowTitle     - Provide the specifc page to append to the browser title
                    Parameter:  p_detail

  pageFooter      - Copyright information

*/

today = new Date();
currYear = today.getYear();

companyName = "Eye-In Média";
copyRightInfo = "2004, " + currYear + " " + companyName;

function windowTitle(p_detail) {
  if ( p_detail != null ) {
    titleSep = ' - ';
  }
  else {
    titleSep = '';
    p_detail = '';
  }
  document.writeln('<title>' + companyName + titleSep + p_detail + '</title>');
}

function pageFooter() {
  document.writeln('<p> ');
  document.writeln('<font class=footNote style="margin-left: 20px">&copy ' + copyRightInfo + '</font><p>');
}


