function onOffswi( divID , selfObj ){
	oItem = document.getElementById( divID );
	oItem.style.display = selfObj.value == 0 ? 'block' : 'none';
}