function print_story()
{
   var story = document.getElementById("tblStory").innerHTML;
   var newdoc = "<html><head><title>SunJournal.com</title>";
   links = "<link href='/css/home2.css' rel='stylesheet' type='text/css'>";
   links = links + "<link href='/css/nav2.css' rel='stylesheet' type='text/css'>";
   links = links + "<link href='/css/story.css' rel='stylesheet' type='text/css'>";
   links = links + "<link href='/css/fronts.css' rel='stylesheet' type='text/css'>";
   links = links + "<link href='/js/esjClips.css' rel='stylesheet' type='text/css'>";
   style = "<style type='text/css'> .style1 {	font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 16px;	color: #316597;	font-weight: bold;}body {	background-color: #FFFFFF;}</style>";
   var code = "<script language='JavaScript' src='/js/print_init.js'>";
    newdoc = newdoc + links + style + "</head><body onload='Print_Init()'><center><img src='/images/sj_masthead.jpg' border='0'></center><br><table>";
   newdoc = newdoc + story;
   newdoc = newdoc + "</table></body></html>";

//   newWindow = window.open("","SunJournal.com","location=no,menubar1=yes");
   newWindow = window.open();
//   newWindow = window.open("","SunJournal.com","location=no");
//   newWindow.locationbar.visible = false;
   newWindow.document.write(newdoc);
   
   return true;
}
