
var fl_w = cwid;
var fl_h = chei;
var file = cfile;
var flcl_w = 24;
var flcl_h = 22;

var fl_x = 10;
var fl_y = 10;
var t_fl_x = 10;
var t_fl_y = 10;

function get_fl_xy () {

  t_fl_x = (document.body.clientWidth-fl_w)/2 + document.body.scrollLeft;
  t_fl_y = (document.body.clientHeight-fl_h)/5 + document.body.scrollTop + 140;
  fl_x += (t_fl_x-fl_x)/6;
  fl_y += (t_fl_y-fl_y)/6;
}

function fl_move () {

  get_fl_xy ();
  document.getElementById("fl_did").style.left = fl_x - 4;
  document.getElementById("fl_did").style.top = fl_y ;
}

function fl_hide () {

  document.getElementById("fl_did").style.visibility = 'hidden';
}

function fl_show () {

  document.getElementById("fl_did").style.visibility = 'visible';
}

document.write (
  '<div id="fl_did" style="position:absolute; visibility:hidden; left:'+fl_x+'px; top:'+fl_y+'px; width:'+fl_w+'px; height:'+fl_h+'px; z-index:9999999;">'
  +'<div align="right"><input type="image" src="img/reklamacl.png" width="'+flcl_w+'" height="'+flcl_h+'" border="0" onclick="fl_hide()" style="position: relative; left: 6px;" /></div>'
  +'<div>'+file+'</div>'
  +'</div> '
);

function setup_diplay () {

  get_fl_xy ();
  fl_x = t_fl_x;
  fl_y = t_fl_y;
  
  fl_move ();
  fl_show ();
  setInterval ("fl_move()", 50);
}

setTimeout ("setup_diplay()", 1000);

