function showcbox(gid,lang)
{
	var div = document.createElement("c_"+gid);
	
	if (curpp != "") {
		pp = 0;
		hidecbox2(curpp);
	}
	
	div.id = "c_"+gid;
	div.style.left = (document.getElementById(gid).offsetLeft+194)+"px";
	div.style.top = (document.getElementById(gid).offsetTop-7)+"px";
	div.className ="categoryboxpopup";
	div.innerHTML = "";
	document.getElementById('categories').appendChild(div);
	getpage("../categorylist.php?c="+gid, "c_"+gid);
	pp = 1;
	curpp = gid;
}

function sustain()
{
	pp = 1;
}

function unsustain(gid)
{
	pp = 0;
	ob = document.getElementById("c_"+gid);
	
	if (ob) {
		document.getElementById('categories').removeChild(ob);
	}
	
	curpp = "";
}

function hidecbox(gid)
{
	pp = 0;
	setTimeout("hidecbox2('"+gid+"')", 1000);
}

function hidecbox2(gid)
{
	if (pp == 0) {
		ob = document.getElementById("c_"+gid);
		
		if (ob) {
			document.getElementById('categories').removeChild(ob);
		}
		
		curpp = "";
	}
}