till
2008-03-10 3ac131dfcf1de0a336abf9547d2419e82e710c1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script type="text/javascript">
 
if (window.rcmail && rcmail.env.action)
  {
  var action = rcmail.env.action=='preferences' ? 'default' : (rcmail.env.action.indexOf('identity')>0 ? 'identities' : rcmail.env.action);
  var tab = document.getElementById('settingstab'+action);
  }
else 
  var tab = document.getElementById('settingstabdefault');
  
if (tab)
  tab.className = 'tablink-selected';
 
</script>