function removeWho(who) {
	if(typeof who== 'string') who=document.getElementById(who);
	if(who && who.parentNode)who.parentNode.removeChild(who);
}
