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/1435700-indonesian-election\"><em>1<\/em> of 1<\/a>\n\n      <p class=\"heliumTitle\">\n        <a href=\"http://www.helium.com/knowledge/233662-indonesian-presidential-election\">The Indonesian Presidential Election is getting tough<\/a>\n      <\/p>\n        \n      <p class=\"heliumByline\">by <a href=\"http://www.helium.com/users/462776\">Bambang Udoyono<\/a><\/p>\n    \n      <div class=\"heliumBodyText\"><p>The Indonesian Presidential Election is getting tough<\/p>\n<p> <\/p>\n<p>The latest polls indicate that President SBY\'s popularity is always on top over the past several months. Most of the polls indicate that about 50 % of voters will vote for him. With Vice President Jusuf Kalla who has a strong backing from the Golkar party as his running mate, it is almost certain that they will win the coming presidential election since their popularity and electability is unbeatable.<\/p>\n<p>But there is a friction between<\/p> ... \n        <a class=\"heliumBodyTextLink\" href=\"http://www.helium.com/items/1435700-indonesian-election\">read more<\/a>\n      <\/div>\n      \n    \n    <p class=\"heliumWriteNow\"><a href=\"http://www.helium.com/items/write_now_remote?category_id=233662\">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_widget7832');



