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