function printerfriendly() 
{
  newwindow = window.open('',"_blank",'height=800,width=750,scrollbars=1,menubar=1');
  newwindow.document.write("<html><head>");
  newwindow.document.write("<link href='http://www.mpw.net/css/style-print.css' rel='stylesheet' type='text/css' />");
  newwindow.document.write("</head><body>");
  newwindow.document.write(
    "<table cellpadding='0' cellpadding='0' class='text'>"
  + "<tr>"
  + "<td>"
  + "<img src='http://www.mpw.net/images/dpw_print_top.jpg' /><br />"
  + "</td>"
  + "</tr>"  
  + "</table>");
  divs = document.getElementsByTagName("div");
  for (divIndex = 0; divIndex < divs.length; divIndex++)
  {
    div = divs[divIndex];
    divCls = div.className;
    if (divCls.indexOf('tableLC') >= 0 || divCls.indexOf('tableFULL') >= 0)
    {
      newwindow.document.write("<div class='tableFULL'>");
      newwindow.document.write(div.innerHTML);
      newwindow.document.write("</div>");
    }
  }
  newwindow.document.write("</body></html>");
  if (window.focus) {newwindow.focus()}
}