function tipCtrl(id) {
	var obj;
	var state;	
	if(obj = document.getElementById(id)) {
		state = obj.style.display;
		state = (!state || state == 'none') ? 'block' : 'none';
		obj.style.display = state;
	}
	return false;
}