
function switchDiv(id,vis) {
	obj = MM_findObj(id);
	if (obj!=null) {
   		obj.style.visibility = vis == 'close' ?  'hidden' : 'visible';
		obj.style.display = vis == 'open' ?  'inline' : 'none' ;
	}
}