function InitLogo()
{
  for (i = 0; i < InitLogo.arguments.length; i++)
  {
    nextout = (i + 1) * 5000
    setTimeout("LogoTXT('" + InitLogo.arguments[i] + "','1')", nextout)
  }
}
function LogoTXT(a,b)
{
  var end = ''
  if (msgout == msgout1 && b < a.length) { end = '-'; msgout = msgout2 }
  else if (msgout == msgout2 && b < a.length) { end = '_'; msgout = msgout1 };
  document.getElementById("logotxt").innerHTML = "<P CLASS=\"scrollmsg\">: " + a.substr(0,b) + end + "</P>"
  if (msgout == msgout2) b++
  if (b <= a.length) setTimeout("LogoTXT('" + a + "','" + b + "')", msgout)
}
function emptyform(a,b)
{
  if (a.value == b) a.value = ''
}
function fadeOut(a)
{
  var dive = document.getElementById(a)

  dive.style.filter="blendTrans(duration=2)"
  // make sure filter is not already playing
  if (dive.filters.blendTrans.status != 2)
  {
    dive.filters.blendTrans.apply();
    dive.style.visibility="hidden";
    dive.filters.blendTrans.play();
  }
}
function fadeIn(a)
{
  var dive = document.getElementById(a)

  dive.style.filter="blendTrans(duration=2)"
  // make sure filter is not already playing
  if (dive.filters.blendTrans.status != 2)
  {
    dive.filters.blendTrans.apply();
    dive.style.visibility="visible";
    dive.filters.blendTrans.play();
  }
}