  var win=null;
  function printIt(printThis)
  {
    win = window.open();
    self.focus();
    win.document.open();
    win.document.write('<html><head>');
    win.document.write('<link rel="stylesheet" href="http://www.familiesmakinmusic.com/blog/wp-content/themes/fmm_stars2/style.css" type="text/css" media="print">');
    win.document.write('</head><body>');
    win.document.write(printThis);
    win.document.write('</body></html>');
    win.document.close();
    win.print();
    win.close();
  }

