/**
 * @author Andreas Wiemer
 */
function dynamic_element(obj_id) {
	if(!isObject(obj_id)) {
		this.obj = document.getElementById(obj_id);
	} else {
		this.obj = obj_id;
	}
	this.obj_id = obj_id;
}	
