alecpl
2008-09-18 0bca279c6961bdfc267e18f99dfda6f6e7e9cd73
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>