function PrintPage() 
{ 
   var winOpt="toolbar=1,location=0,directories=1,menubar=1,scrollbars=1,width=640,height=480,left=15,top=25"; 

   var winHTML = document.getElementById('printarea').innerHTML;  
   
   var content=window.open("","",winOpt); 
       content.document.open(); 
       content.document.write('<html><LINK href=sub.css rel=Stylesheet><body>'); 
       content.document.write('<table width=630 border=0 cellspacing=0 cellpadding=0><tr><td>'); 
       content.document.write('<p CLASS="subtitle">Better Jobs Better Care - BJBC.org</p><hr size="1" color="#4086B9" noshade>'); 
       content.document.write(winHTML);  
       content.document.write('</td></tr></table>'); 
       content.document.write('</body></html>'); 
       content.document.close(); 
       content.focus(); 
}