
var contentjs = 'main/indexcontent.cgi';

function joke(stuff)
{
  divcontent('jokediv', stuff); 
}

function refreshtomain()
{
  if (navigator.userAgent.indexOf("IE 6") != -1
    || navigator.userAgent.indexOf("IE 5") != -1)
  {
    top.open('http://www.postiloota.net/ext/main/index.html');
    top.close();
  } else {
    window.location = 'http://www.postiloota.net/ext/main/index.html';
  }
}

function info(stuff)
{
  divcontent('infodiv', stuff); 

  var remotequery = window.location.href;
  if (remotequery.indexOf('openremote=1') != -1)
  {
    if (isloggedin) openRemote();
  }
  if (remotequery.indexOf('compatibility=1') != -1)
  {
    setnogzip();
    top.setTimeout("refreshtomain()", 500);
  }
}

function userstats(stuff)
{
  divcontent('ustatsdiv', stuff); 
}

