// JavaScript Document
var delta=0.015;
var collection;
var closeB=false;
function floaters() {
  this.items = [];
  this.addItem = function(id,x,y,content)
      {
     document.write('<DIV id='+id+' style="Z-INDEX:10; POSITION: absolute;width:96px; height:60px;left:'+(typeof(x)=='string'?eval(x):x)+';top:'+(typeof(y)=='string'?eval(y):y)+'">'+content+'</DIV>');
     var newItem    = {};
     newItem.object   = document.getElementById(id);
     newItem.x= x;
     newItem.y= y;

     this.items[this.items.length]  = newItem;
      }
  this.play = function()
      {
     collection    = this.items
     setInterval('play()',1);
      }
  }
  function play()
  {
   if(screen.width<=800 || closeB)
   {
    for(var i=0;i<collection.length;i++)
    {
     collection[i].object.style.display = 'none';
    }
    return;
   }
  } 
  function closeBanner()
  {
   closeB=true;
   return;
  }

var theFloaters  = new floaters();
//
theFloaters.addItem('followDiv1',900,25,'<a onClick="closeBanner();" href=job.asp target=_blank><embed src=Flash/1.swf quality=high pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash height=280 width=100></embed></a><div style="width:100%;background:#666666;color:#ffffff"><a href="#" style="color:#ffffff" onClick="closeBanner();">¹Ø±Õ</a></div>');
theFloaters.addItem('followDiv2',5,25,'<a onClick="closeBanner();" href=job.asp target=_blank><embed src=Flash/1.swf quality=high pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash height=280 width=100></embed></a><div style="width:100%;background:#666666;"><a style="color:#ffffff" href="#" onClick="closeBanner();">¹Ø±Õ</a></div>');
theFloaters.play();
