thomascube
2005-10-13 455c2bd934e0dd708244e9e1c9fc7acd5d7b37e7
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>