// JavaScript Document
var intIDStored = 0;
function showchild(a) {
	if (intIDStored == a){
		document.getElementById(a).style.display="none";
		intIDStored = 0;
	}else{
		if (intIDStored != 0){
			document.getElementById(intIDStored).style.display="none";
			document.getElementById(a).style.display="inline";
			intIDStored = 0;
		}else{
			document.getElementById(a).style.display="inline";
			intIDStored = a;
		}
	}
}

function stayopen(b,c) {	
	document.location = "products.php?categoryID=" + b;
	onload(document.getElementById(c).style.display="inline");
}
