function PrintableVersion() 
{ 
  /* Don't display the "(Printable Version)" link */
  PrintLink = document.getElementById("PrintableLink");
  PrintLink.style.visibility = "hidden";
  
  /* Don't display the help bar at the top of pub ordering pages */  
  if (document.getElementById("HelpBar"))
  {  
    HelpImage = document.getElementById("HelpBar");
    HelpImage.style.display = "none";  
  }
     
  /* Grab the HTML within the ContentStart DIV */	  
  var sWinHTML = document.getElementById('ContentStart').innerHTML; 
   
  
  document.write('<html><head><title></title></head><LINK href=/styles/printstyle.css rel=Stylesheet>');

  document.write('<body>');
 document.write('<img src=/images/banner_en.gif width=903 height=90>'); 
  //document.write('<a href=mailto:info@cdcnpin.org><img src=/images/howbar.gif></a>');
  
  document.write('<table width=640 border=0 cellpadding=0 cellspacing=0>');
 document.write('<tr>');
 document.write('</td>');
//  document.write('<td align=left valign=top background=/images/banner_bkgd.gif><a href=/scripts/index.asp><img src=/images/npin_logo.gif alt=NPIN Banner width=200 height=77 border=0></a></td>');
  //document.write('<td align=right background=/images/banner_bkgd.gif><img src=/images/spacer.gif alt= width=500 height=10 border=0>');
  //document.write('<span class=search>1-800-458-5231, M-F 9am-8pm(ET)</span>');
  //document.write('<img src=/images/spacer.gif alt= width=50 height=10 border=0>');
  //document.write('<a href=mailto:info@cdcnpin.org class=search>Contact Us</a>');
  //document.write('<img src=/images/spacer.gif alt= width=50 height=10 border=0>');
  //document.write('<a href=http://server.iad.liveperson.net/hc/72260418/?cmd=file&file=visitorWantsToChat&site=72260418&byhref=1 class=search>Live Help M-F 9am-8pm(ET)</a><img src=/images/spacer.gif alt= width=50 height=10 border=0>');
 // document.write('</span></td>');
  //document.write('</tr>');
 // document.write('</table>');
  //document.write('<table width=100% border=0 cellpadding=0 cellspacing=0>');
  //document.write('<tr>');
  //document.write('<td width=20></td>');
  //document.write('<td><br>');
  document.write(sWinHTML); 
  document.write('</td>');
  document.write('</tr>');  
  document.write('</table>');
  document.write('</body></html>');    
  document.close(); 
}