  function printable()
  {
    var itemData = document.getElementById('spnItemData').innerHTML;
    var thisPage = window.document.title;
      var popWin = window.open('','','toolbar=0, location=0,status=0,menubar=0,resizable=0,scrollbars=1,width=750,height=500');
  popWin.document.open();
  popWin.document.write('<ht'+'ml><he'+'ad><ti'+'tle>Creative Kid Stuff: '+thisPage+'</tit'+'le><sty'+'le>.H1Name {font-family:arial;font-size:19;</sty'+'le></he'+'ad><bo'+'dy>');
  popWin.document.write(itemData);
  popWin.document.write('<p><b>AVAILABLE FOR PURCHASE AT WWW.CREATIVEKIDSTUFF.COM</b>');
  popWin.document.write('<scri'+'pt language=javascript>window.print();</scr'+'ipt>');
  popWin.document.write('</body></html>');
  popWin.document.close();
  popWin.moveTo(50,50);
  }
