function write_to_dom(cover, div_id){
  cover.id = div_id;
  target = document.getElementById(div_id).parentNode;
  child = target.firstChild
  do{
    next = child.nextSibling
    if(child.nodeName != 'STYLE'){
      target.removeChild(child);
    }
    child = next
  }while(child)
  target.appendChild(cover);
  target.style.display = '';
}


var html;
var cover;
  html = "<div class=\"heliumTopArticle heliumWidget heliumPublic\">\n  <div class=\"heliumTopArticleMain\">\n    <p class=\"heliumLead\">Submit your own article on...<\/p>\n    \n        <a class=\"heliumRankIcon\" href=\"http://www.helium.com/items/360293-how-to-improve-your-spelling-and-proofreading-skills\"><em>1<\/em> of 19<\/a>\n\n      <p class=\"heliumTitle\">\n        <a href=\"http://www.helium.com/knowledge/65586-how-to-improve-your-spelling-and-proofreading-skills\">How to improve your spelling and proofreading skills<\/a>\n      <\/p>\n        \n      <p class=\"heliumByline\">by <a href=\"http://www.helium.com/users/74075\">Linda Ann Nickerson<\/a><\/p>\n    \n      <div class=\"heliumBodyText\"><p>SPELLNG IZ IMPORTINT. IF YOO CANNUT SPEL RITE, PEEPLE WILL KNOT TAYKE YOOR RITING TWO SERIUSLY.<\/p><p>How can you improve your proofreading and spelling skills?<\/p><p>1) PERFECT PROOFREADING<\/p><p>READ ITEMS OUT LOUD.<\/p><p>Reading silently, we may zip quickly over entire lines, missing errors. If we read aloud, we are forced to slow down and pay better attention. We may catch run-on sentences, fragments, misplaced words, and other mistakes this way.<\/p><p>ZOOM IN FOR PROOFING.<\/p><p>When we write a piece on our computers,  ... \n        <a class=\"heliumBodyTextLink\" href=\"http://www.helium.com/items/360293-how-to-improve-your-spelling-and-proofreading-skills\">read more<\/a>\n      <\/div>\n      \n    \n    <p class=\"heliumWriteNow\"><a href=\"http://www.helium.com/items/write_now_remote?category_id=65586\">Write now!<\/a><\/p>\n    \n    <p class=\"heliumClose\">You are a few easy steps away from getting published.  Click on the link above to join Helium and get started.<\/p>\n  <\/div>\n  \n  <div class=\"heliumTopArticleFooter heliumKnowledge\">    \n    <a class=\"heliumPoweredBy\" href=\"http://www.helium.com\">Powered by Helium.com<\/a>\n  <\/div>\n<\/div>\n";
  cover = document.createElement("div");
  cover.innerHTML = html;
  write_to_dom(cover, 'helium_widget3523');




