function Click(id) {
	obj = document.getElementById(id);
	if (obj.style.display == 'none') {
		obj.style.display = 'inline';
	} else {
		obj.style.display = 'none';
	}
	//alert(obj);
	//GetProperties(obj, 'obj');
}
