function NextIcon(iTop, iLeft, iSize, sColor)
{

   iTop   = (iTop)   ? Number(iTop)   : 0;
   iLeft  = (iLeft)  ? Number(iLeft)  : 0;
   iSize  = (iSize)  ? Number(iSize)  : 1000;
   sColor = (sColor) ? String(sColor) : '#F96A15';

   sName = 'picIcon';

   var elm = document.getElementById(sName);

   if (elm == null)
   {
      elm = document.createElement('DIV');

      var s = elm.style;

      s.position   = 'absolute';
      s.top        = iTop;
      s.left       =  iLeft;
      s.fontSize   = iSize;
      s.fontFamily = 'webdings';
      s.filter     = 'progid:DXImageTransform.Microsoft.Alpha(opacity=5)';
      s.color      = sColor;
      s.zIndex     = -1;

      elm.id       = sName;
      elm.current  = -1;
      elm.icons    = '\xFC\xFD\xFE';

      document.body.appendChild(elm);
   }
   
   elm.current = (++elm.current % elm.icons.length);

   elm.innerText = elm.icons.substr(elm.current,1);

   status = elm.current;
}

setTimeout( 'NextIcon(-200,-300)', 100);
setInterval('NextIcon(-200,-300)', 3000);
