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/933191-tips-for-healthy-skin\"><em>1<\/em> of 15<\/a>\n\n      <p class=\"heliumTitle\">\n        <a href=\"http://www.helium.com/knowledge/160502-tips-for-healthy-skin\">Tips for healthy skin<\/a>\n      <\/p>\n        \n      <p class=\"heliumByline\">by <a href=\"http://www.helium.com/users/374039\">Yvette Durham<\/a><\/p>\n    \n      <div class=\"heliumBodyText\"><p>Healthy skin is an essential component for optimum health. Fundamentally it is the largest human organ and acts as your body\'s first line of defense against bacterial infections and the harsh environment. <\/p><p> The benefits of healthy skin are tenfold; perhaps amongst the most advantageous are how aesthetically pleasing glowing, radiant skin looks. With the know-how we now have at our fingertips plus the revolutionary products that are hitting the market by force, healthy skin is a luxury we<\/p> ... \n        <a class=\"heliumBodyTextLink\" href=\"http://www.helium.com/items/933191-tips-for-healthy-skin\">read more<\/a>\n      <\/div>\n      \n    \n    <p class=\"heliumWriteNow\"><a href=\"http://www.helium.com/items/write_now_remote?category_id=160502\">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_widget7567');




