/**********************************************************************
 **** JavaScript designed for on-line course Introduction to C++   **** 
 **********************************************************************/
 
// prints the standard header
function print_header()
{
  return 0;
}
 
// prints the standard footer
function print_footer(dir)
{
  document.writeln("<p><hr align=center width=90%><br>");
  document.writeln("<div align=center><font size=-1>");
  document.writeln(" <b><i>WebProgramming</i></b> by Daniel Dementiev,");
  document.writeln(" <a href=\"http://www.marshall.edu/\">Marshall University</a>");
  document.writeln("</font>");
  document.writeln("<br><font size=-1>If you have any questions or comments e-mail me ");
  document.writeln("<a href='mailto:dementiev@marshall.edu'>");
  document.writeln("<img src='"+(dir?dir+"/":"")+"pics/plain_en.gif' ");
  document.writeln("alt='my address' border=0 align=absbottom></a></font></div>");
  return 0;
}