var GSFN;
if(GSFN == undefined) {
  GSFN = {};
}
 

GSFN.feedback = function(url, tab_options) {
  this.empty_url = "";
  this.feedback_url = url;
  this.tab_options = tab_options ? tab_options : {};
  this.tab_options.placement = this.tab_options.placement ? this.tab_options.placement : 'left';
  this.tab_options.color = this.tab_options.color ? this.tab_options.color : '#222';
  year = this.tab_options.year;
  label = this.tab_options.label;
  niceLabel = this.tab_options.niceLabel;
  url="/"+tab_options.label+"/"+tab_options.year+"/winner/";
  this.tab_html = '<a href="'+url+'"" id="fdbk_tab" class="fdbk_tab_'+this.tab_options.placement+'" style="background-color:'+this.tab_options.color+';background-image: url(/images/years/'+year+'.png);" title="Who won the '+niceLabel+' in '+year+'?">Who won the '+niceLabel+' in '+year+'?</a>';
 
                      
  if(this.tab_options.container) {
    var container_el = this.gId(this.tab_options.container);
     } else {
    document.write(this.tab_html);
     }                   

};

