function InvodoPlayer(options) {
  this.affiliate = options.affiliate;
  this.overlay   = options.overlay != undefined ? options.overlay : false;
  this.debug     = options.debug != null ? options.debug : false;
}

function launch (link) {
  window.open(link,'invodo','menubar=0,location=0,resizable=0,width=770,height=360'); 
  return false;
}

InvodoPlayer.prototype.launch = launch;
