function tabModuleVisible(id, total) {
//	alert(id+'  '+total);
	for (i=0; i<total; i++) {
		getId('content'+i).style.display = 'none';		
	}
	getId('content'+id).style.display = '';
}



