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('main_column_home').innerHTML; 
   
  /* Write a new page of the HTML, adding a header to the page */   
  document.open();  
  document.write('<html><head><title></title></head><LINK href=/styles/site_style.css rel=Stylesheet>');
  document.write('<body class="printerfriendly">');
  //document.write('<a href=mailto:nyvprc@safeyouth.org><img src=/images/howbar.gif></a>');
  
  document.write('<table width=100% border=0 cellpadding=0 cellspacing=0>');
  document.write('<tr>');
  document.write('<td>');
  document.write('<a href=/scripts/index.asp><img src=/images/home_logo2.gif width=166 height=67 border=0 alt=National Youth Violence Prevention Resource Center - Links to NYVPRC Home.></a>');
  document.write('</td>');
  document.write('<td>');
  document.write('<br>');
  document.write('<table width=500 border=0 cellpadding=0 cellspacing=0 align=right>');
  //document.write('<tr>'); 
  //document.write('<td valign=top scope=row>Hours</td>');
  //document.write('<td colspan=2 valign=top>Monday through Friday</td>');
  //document.write('<td valign=top scope=row>Email</td>');
  //document.write('<td colspan=2 valign=top><a href=mailto:nyvprc@safeyouth.org>nyvprc@safeyouth.org</a></td>');
  //document.write('</tr>');
  document.write('<tr>');
  document.write('<td valign=top>&nbsp;</td>');
  //document.write('<td colspan=2 valign=top>8 a.m. to 6 p.m. (ET)</td>');
  document.write('<td valign=top scope=row>Web site</td>');
  document.write('<td colspan=2 valign=top><a href=http://www.safeyouth.org>www.safeyouth.org</a></td>');
  document.write('</tr>');
  //document.write('<tr>'); 
  //document.write('<td valign=top scope=row>Phone</td>');
  //document.write('<td colspan=2 valign=top> 1-866-723-3968 <br> 1-866-620-4160 (TTY)</td>');
  //document.write('<td valign=top scope=row>Fax</td>');
  //document.write('<td colspan=2 valign=top>1-301-562-1001</td>');
  //document.write('</tr>');
  document.write('</table>');
  document.write('</td>');
  document.write('</tr>');
  document.write('</table>');
  document.write('<hr class=contentFooter width=100% size=2 noshade align=center>');
  
  document.write(sWinHTML);          
  document.write('</body></html>');    
  document.close(); 
}