function printMe(divId) {
   w = window.open('','newwin');
   w.document.write('<html><head><link href="/recipes/recipes.css" type="text/css" rel="stylesheet"></head>');
   w.document.write('<body onload="window.print()"><div id="content">'+document.getElementById(divId).innerHTML+'<p><i>Written by Mildred and Arul John (www.pinoymix.com)</i></p></div></body></html>');
   w.document.close();
   return false;
}
