qstr=location.search;
qargs=new Object();
qargs.anode='';
if (qstr){
	tmp1=qstr.slice(1).split('&');
	for (i=0; i<tmp1.length; i++)
	{
		tmp2 = tmp1[i].split('=');
		eval('qargs.'+tmp2[0]+"='"+tmp2[1]+"'");
	}
}
function idz(qstr) {
	location='http://'+location.host+location.pathname+'?node=admin&anode='+qargs.anode+qstr;
}
function togDisplay(id){
	el=document.getElementById(id);
	if (el.style.display=='none') {
		el.style.display='block';
	} else { 
		el.style.display='none';
	}
	
}