﻿function showhideMultiLev(thecell,noChild){
	if (noChild==1) return true;
	if (eval('document.all.'+thecell).style.display!=''){
		eval('document.all.'+thecell).style.display = '';
	}else{
		eval('document.all.'+thecell).style.display = 'none';
	}
	return false;
}
