  function printable()
  {
    var itemData = document.getElementById('spnItemData').innerHTML;
        itemData = itemData.replace(/\r/g,' ');
        itemData = itemData.replace(/\n/g,' ');
	itemData = itemData.replace(/\<\!--START_SHIPPING_CALC--\>.+\<\!--END_SHIPPING_CALC--\>/,"");
	itemData = itemData.replace(/\<\!--START_ADD_TO_CART_AREA--\>.+\<\!--END_ADD_TO_CART_AREA--\>/,"");
	itemData = itemData.replace(/\<\!--START_USER_REVIEWS_BUTTONS--\>.+\<\!--END_USER_REVIEWS_BUTTONS--\>/,"<div id=btnReadReviews style='display:none;'></div>");
	itemData = itemData.replace(/\<\!--START_FB_AREA--\>.+\<\!--END_FB_AREA--\>/,"");
	itemData = itemData.replace(/<script\b[^>]*>(.*?)<\/script>/gi,"");

    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);
  }

