function GetLastModified()
{
 return "2009-05-05";
}

function GetCopyrightYear()
{
  var now = new Date();
  return now.getFullYear();
}

function InsertMailToTag( userName, domainName)
{
  var EmailId;
  var atSign = "&#64;"
  var fullStop = "&#46";
  EmailId = userName;
  EmailId = "" + EmailId + atSign; 
  EmailId = EmailId + domainName;
  document.write( "<a href='mail" + "to:" + EmailId + "'>" + EmailId
  +"</A>" );
}

function GetFooter()
{
 var html = "<div id='footer'> ";
 html += " <hr /> ";
 html += "  copyright &copy; " ;
 html += GetCopyrightYear() ;
 html += ", software meadows llc.  all rights reserved. ";
 html += "  &nbsp;&nbsp;last modified: " ;
 html += GetLastModified() ;
 html += "&nbsp;&nbsp;stylesheet based on <a href='http://www.zap.org.au/documents/styles/sinorcaish/'>Sinorcaish.</a> ";
 html += "  </div> ";
document.write(html);
}
