//makeSpoiler by Deacon
//spiritually oriented by Red Alert lol
function makeSpoiler2(conteudo){
   
   var randomnumber=Math.floor(Math.random()*99999);

   document.write("<input type='button' value='Exibir Spoiler!' style='width:120px;font-size:12px;margin:10px;padding:0px;' ");
   document.write(" onclick='show_hide("+randomnumber+",this);' >");
   document.write("<div id='show"+randomnumber+"' ");
   document.write(" style='background-image:url();  display: none; background-color:transparent; background-repeat:repeat; margin: 0px;border-style:solid;border-width:1px; padding: 4px; width:98%' ");
   document.write(">"+conteudo);
   document.write("</div>");
}

function show_hide(randomnumber,obj){
   
   if (document.getElementById('show'+randomnumber).style.display != '') {
       document.getElementById('show'+randomnumber).style.display = ''; 
       obj.value = 'Esconder Spoiler rs!'; 
   } else { 
       document.getElementById('show'+randomnumber).style.display = 'none';
       obj.value = 'Exibir Spoiler! rs'; 
  }
}
