function killFloater(div) {
	var layer = document.getElementById(div);
	var father = layer.parentNode;
	father.removeChild(layer);
}


