function ce(z) {
	return document.createElement(z);
}

function de(z) {
	z.parentNode.removeChild(z);
}

function ct(z) {
	return document.createTextNode(z);
}

function clearElement(c) {
	var _tmp = document.getElementById(c);
	if(_tmp.hasChildNodes()){
		while (_tmp.firstChild) {
  			_tmp.removeChild(_tmp.firstChild);
		}
	}
}

