function printfriendly() {
    var aRecipe = window.open('','','scrollbars=yes,width=740,height=600');
    aRecipe.document.open("text/html");
    aRecipe.document.write('<html><head><link rel="stylesheet" href="/common/css/styles.css" type="text/css" /><style type="text/css">#printfriendly{ display: none; }</style></head><body style="padding-left:10px;padding-right:10px;background-image:none;background-color:#FFFFFF;">');
    aRecipe.document.write('<img src="/reynoldskitchens/images/from_TRK.gif" />')
    aRecipe.document.write('<div id="print" style="text-align:left">');
    aRecipe.document.write(document.getElementById('bodycell').innerHTML);
    aRecipe.document.write('</div>');
    aRecipe.document.write('</body></html>');
    aRecipe.document.close();
    aRecipe.print();
    return false;
}

