function fc(url)
{
  toolbar_str = 'no';
  menubar_str = 'no';
  statusbar_str = 'no';
  scrollbar_str = 'no';
  resizable_str = 'no';
  name = 'win';
  var haut=(screen.height-520)/2;
  var Gauche=(screen.width-750)/2;

  cookie_str = document.cookie;
  cookie_str.toString();

  pos_start  = cookie_str.indexOf(name);
  pos_end    = cookie_str.indexOf('=', pos_start);

  cookie_name = cookie_str.substring(pos_start, pos_end);

  pos_start  = cookie_str.indexOf(name);
  pos_start  = cookie_str.indexOf('=', pos_start);
  pos_end    = cookie_str.indexOf(';', pos_start);
 
  if (pos_end <= 0) pos_end = cookie_str.length;
  cookie_val = cookie_str.substring(pos_start + 1, pos_end);
  if (cookie_name == name && cookie_val  == "done")
    return;

  window.open('http://www.seriesddl.com/streaming.php?id='+url, '', 'left='+Gauche+',top='+haut+',width='+750+',height='+520+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}