// Get Element By Idfunction gebid(i) { return document.getElementById(i); }// Create Elementfunction ce(e, obj){	var a = document.createElement(e);	for(prop in obj)	{		a[prop] = obj[prop];	}	return a;}// Append Childfunction ac(){	var a = ac.arguments[0];	for(i=1; i<ac.arguments.length; i++)	{		if(arguments[i])		{			a.appendChild(ac.arguments[i]);		}	}	return a;}// Remove Childfunction rc(node){	if(node == null) return;	node.parentNode.removeChild(node);}