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/1551913-unschooling-philosophy\"><em>1<\/em> of 2<\/a>\n\n      <p class=\"heliumTitle\">\n        <a href=\"http://www.helium.com/knowledge/264793-what-is-unschooling\">What is unschooling?<\/a>\n      <\/p>\n        \n      <p class=\"heliumByline\">by <a href=\"http://www.helium.com/users/392522\">Stefany<\/a><\/p>\n    \n      <div class=\"heliumBodyText\"><p>Trying to explain unschooling to someone with no experience with it, is much like trying to explain the color green to a blind person. There are too many shades, tints, and variations which combined make it next to impossible to describe the color extensively. It is much less complicated to debunk the myths and legends about the philosophy and explain what it is not rather than describe what it is.<\/p>\n<p>Unschooling does not fit neat and tidy in a box. From deschooling to radical unschooling,<\/p> ... \n        <a class=\"heliumBodyTextLink\" href=\"http://www.helium.com/items/1551913-unschooling-philosophy\">read more<\/a>\n      <\/div>\n      \n    \n    <p class=\"heliumWriteNow\"><a href=\"http://www.helium.com/items/write_now_remote?category_id=264793\">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_widget2094');




