// 
  var HTMLCode = '';

  HTMLCode += '<style type="text/css"><!--';
  HTMLCode += '#FlirtCashLayer{ z-index:15000; right:2px; font-family:arial; font-size:12px; bottom:-2px; position:fixed; padding:0px; width:201px; height:116px; background:#FEFBF0 url(http://www.sexeck.org/Images/MessengerBackground.jpeg);}';
  HTMLCode += '#FlirtCashLayer a { color:#000000; text-decoration:none; }';
  HTMLCode += '#FlirtCashLayer img { width:47px; height:62px; }';
  HTMLCode += '--></style>';

  HTMLCode += '<div id="FlirtCashLayer" style="position: fixed; bottom: -200px; display: none;">';
  HTMLCode += '<div style="position:absolute; top:3px; right:5px;"><a href="#" onclick="MoveLayer(\'FlirtCashLayer\',-120,\'Down\',8); return false;" style="color:#666666; text-decoration:none;"><b>x</b></a></div>';
  HTMLCode += '<div style="padding:6px 6px 6px 25px; text-align:left; font-family:verdana; font-size:10px; color:#666666;"><b>NymphoLiana (32)</b></div>';
  HTMLCode += '<div style="position:absolute; top:33px; left:9px; width:47px; height:62px;"><a href="http://www.sexeck.org/NymphoLiana.html?wmid=42398" target="_blank"><img src="http://image.netconsult.org/FotoPreview_12864.jpeg" border=0></a></div>';
  HTMLCode += '<div style="position:absolute; top:30px; right:5px; text-align:left; width:125px; font-family:verdana; font-size:11px;"><a href="http://www.sexeck.org/NymphoLiana.html?wmid=42398" target="_blank" style="font-weight: normal; font-size: 8pt;">Naturgeil und versaut.Ich mag heisse Spielchen, geile Dessous, Nylons,High Heels,Fetisch,Lack,Bondag...</a></div>';
  HTMLCode += '<div style="clear:both;"></div>';
  HTMLCode += '</div>';
  document.write(HTMLCode);
  
  function RepositionLayer(LayerID)
  {
    var Layer = document.getElementById('FlirtCashLayer');
    Layer.style.top=window.pageYOffset+window.innerHeight-120;
  }
  
//  setInterval ('RepositionLayer();', 100 );

  setTimeout("MoveLayer('FlirtCashLayer',-4,'Up',8)",3000);


  function MoveLayer(LayerID,x,Direction,Speed)
  {
    var Supported = (document.getElementById);
    if (!Supported) return;

    var LayerElement = document.getElementById(LayerID);
    var CurrentPosition = parseInt(LayerElement.style.bottom);
    LayerElement.style.display = '';
    switch(Direction)
    {
      case 'Down':
        var CurrentPosition = parseInt(LayerElement.style.bottom);
        if(CurrentPosition > x)
        {
          CurrentPosition -= Speed;
          LayerElement.style.bottom = CurrentPosition+'px';
          setTimeout("MoveLayer('"+LayerID+"',"+x+",'Down',"+Speed+")",15);
        }
        else
        {
          LayerElement.style.display='none';
        }
        break;
      case 'Right':
        var CurrentPosition = parseInt(LayerElement.style.left);
        if(CurrentPosition < x)
        {
          CurrentPosition += Speed;
          LayerElement.style.left = CurrentPosition+'px';
          setTimeout("MoveLayer('"+LayerID+"',"+x+",'Right',"+Speed+")",15);
        }      
        break;
      case 'Left':
        var CurrentPosition = parseInt(LayerElement.style.left);
        if(CurrentPosition > x)
        {
          CurrentPosition -= Speed;
          LayerElement.style.left = CurrentPosition+'px';
          setTimeout("MoveLayer('"+LayerID+"',"+x+",'Left',"+Speed+")",15);
        }
        break;
      case 'Up':
        var CurrentPosition = parseInt(LayerElement.style.bottom);
        if(CurrentPosition < x)
        {
          CurrentPosition += Speed;
          LayerElement.style.bottom = CurrentPosition+'px';
          setTimeout("MoveLayer('"+LayerID+"',"+x+",'Up',"+Speed+")",15);
        }
    }
  }
