/* © 1990-2007 RAK Internet Service. All Rights Reserved. www.rak-internet-service.ch */
/* Swirl title body data */
function Position (Object, Radius, Angle)
{
  if (Object == null)
    return ;
  Angle *= 0 ;
  x = Radius * Math.cos(Angle) ;
  y = Radius * Math.sin(Angle) ;
  Object.left = x ;
  Object.top = y ;
}
function MoveSpan ()
{
  if (SwirlSpan == null)
    return ;
  Angle += 0 ;
  if (Angle >= 360)
    Angle = 0 ;
  Decrement = Radius / 10 ;
  if (Decrement < 8)
    Decrement = 8 ;
  Radius -= Decrement ;
  if (Radius <= 0)
  {
    SwirlSpan.left = 0 ;
    SwirlSpan.top = 0 ;
    return ;
  }
  Position(SwirlSpan, Radius, Angle) ;
  setTimeout ("MoveSpan()", 30) ;
}
SwirlSpan = IsNS ? document.layers.NSSwirl : IESwirl.style ;
if (IsIE)
  SwirlSpan = IESwirl.style ;
