// -----------------------
// 
// -----------------------

var orgColour ;
var currenttab = null;
var currentpage = null;

function scroll1()
{
 if (document.all)
 {
  if (document.body.scrollTop + menufloat.clientHeight < document.body.scrollHeight)
  {
    menufloat.style.top = document.body.scrollTop;
  }
 }
}

function openWin(s)
{
  window.open(s,"", "width=400,height=300,status=1,resizable=1;");
  return false;
}

function openWorld(s)
{
  window.open(s,"", "width=720,height=500,status=1,resizable=1;");
  return false;
}

function openBigWindow(s)
{
  window.open(s,"", "width=700, height=600, status=1, resizable=1");
  return false;
}

function ShowPage(tab, name)
{
 if (tab != currenttab)
 {
  if (currentpage != null)
  {
   currenttab.disabled = false;
   currenttab.className = 'tabinactive';
   currentpage.className = 'tabbedpage';
   currentpage.style.display = 'none';
  }
  currenttab = tab;
  currenttab.className = 'tabactive';
  currentpage = document.all[name];
  currentpage.className = 'tabbedpageactive';
  currentpage.style.display = '';
 }
}

function LoadPage()
{
  ShowPage(document.getElementById('t1'), 'tab1');
}

