

function shadowImage( image, width, height )
{

    var shadowHeight = height - 10;
    var shadowWidth = width - 10;

document.writeln(
"<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" height=\"" + height +  "\" width=\"" + width +"\"><tr><td>" + 
"<img name=\"display\" width=\""+width+"\" height=\""+height+"\" src=\"" + image +"\"></td><td>" +
"<img src=\"images/ro.gif\" width=\"10\" height=\"10\"><br>" +
"<img src=\"images/r.gif\" width=\"10\"" +
"height=\"" + shadowHeight + "\"></td></tr><tr><td>" +
"<img src=\"images/lu.gif\" width=\"10\"" +
"height=\"10\"><img src=\"images/u.gif\" width=\"" + shadowWidth +"\"" +
"height=\"10\"></td>" +
"<td><img src=\"images/ru.gif\" width=\"10\"" +
"height=\"10\"></td></tr>" +
"</table>"
        );
}

function printStory( date, author, title, story)
{



document.writeln(
    "<!-- start template: ID 93, dispStory;misc;default -->\n" +
   "<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n" +
   "     <tbody><tr valign=\"top\">\n" +
   "         <td bgcolor=\"#0000ff\"><img src=\"images/cl.gif\" width=\"7\" height=\"10\" alt=\"\"><img src=\"images/pix.gif\" width=\"\"4 height=\"4\" alt=\"\"></td>\n" +
   "         <td bgcolor=\"#0000ff\" width=\"100%\">\n" +
   "         <table width=\"100%\" border=\"0\" cellpadding=\"2\" cellspacing=\"0\">\n" +
   "             <tbody><tr>\n" +
   "                 <td bgcolor=\"#0000ff\"><font face=\"verdana,helvetica,arial\" size=\"3\" color=\"#ffffff\"><b>" + title + "</b></font></td>\n" +
   "             </tr>\n" +
   "         </tbody></table>\n" +
   "         </td>\n" +
   "         <td bgcolor=\"#0000ff\" align=\"right\"><img src=\"images/cr.gif\" width=\"7\" height=\"10\" alt=\"\"></td>\n" +
   "     </tr>\n" +
   " </tbody></table>\n" +
   "<font color=\"#222222\">  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tbody><tr>\n" +
   "         <td background=\"//family.diego.org/images/gl.gif\"><img src=\"images/pix.gif\" width=\"11\" height=\"11\" alt=\"\"></td>\n" +
   "         <td bgcolor=\"#e6e6e6\" width=\"100%\">\n" +
   "             <table width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\"><tbody><tr>\n" +
   "                 <td bgcolor=\"#e6e6e6\">\n" +
   "                     <font face=\"verdana,helvetica,arial\" size=\"1\">posted by <a href=\"\">doug</a>\n" +
   "                         on " + date + "</font><br>\n" +
   "                     <font face=\"verdana,helvetica,arial\" size=\"1\">from the <b></b> dept.</font>\n" +
   "                 </td>\n" +
   "             </tr></tbody></table>\n" +
   "         </td>\n" +
   "         <td background=\"//family.diego.org/images/gr.gif\"><img src=\"images/pix.gif\" width=\"11\" height=\"11\" alt=\"\"></td>\n" +
   "     </tr>\n" +
   "     <tr><td bgcolor=\"#0000ff\" colspan=\"3\"><img src=\"images/pix.gif\" width=\"1\" height=\"1\"></td></tr>\n" +
   "     <tr>\n" +
   "         <td background=\"//family.diego.org/images/wl.gif\"><img src=\"images/pix.gif\" width=\"11\" height=\"11\" alt=\"\"></td>\n" +
   "         <td bgcolor=\"#ffffff\" width=\"100%\">\n" +
   "             <table width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\"><tbody><tr><td bgcolor=\"#ffffff\">\n" +
   "                 <a href=\"http://family.diego.org/search.pl?topic=1\"><img src=\"images/topicnews.gif\" width=\"34\" height=\"44\" border=\"0\" align=\"right\" hspace=\"20\" vspace=\"10\" alt=\"News\"></a>\n" +
   "                 " + author + " writes <i>\"" + story + "\"</i>\n" +
   "             </td></tr></tbody></table>\n" +
   "         </td>\n" +
   "         <td background=\"//family.diego.org/images/wr.gif\"><img src=\"images/pix.gif\" width=\"11\" height=\"11\" alt=\"\"></td>\n" +
   "     </tr>\n" +
   "     <tr bgcolor=\"#0000ff\"><td colspan=\"3\"><img src=\"images/pix.gif\" width=\"1\" height=\"1\"></td></tr>\n" +
   "     </tbody></table>\n" +
   "<!-- end template: ID 93, dispStory;misc;default -->" 
   );



    


}
