// JavaScript Document
//purchase hide





function addLoadEvent(func) {
 var oldonload = window.onload;
 if (typeof window.onload != 'function') {
 window.onload = func;
 } else {
window.onload = function() {
 oldonload();
 func();
 }
 }
}

function showhide() {
 var hidetext = this.nextSibling;

 if(hidetext.nodeType == 3) {
hidetext = hidetext.nextSibling;
 }
 hidetext.className = (hidetext.className == "") ? "show":"";
}

function purchase_show() {
 if(!document.getElementById("mod")) return false;
 var show_table = document.getElementById("mod");
var strongs = show_table.getElementsByTagName("strong");
for(var j=0; j<strongs.length; j++) {
 if(strongs[j].className == "showhide") {
 strongs[j].onclick = showhide;
 
 }
 }
 
}
addLoadEvent(purchase_show); 


