var is_ie = navigator.appName.toLowerCase().indexOf('internet explorer')+1;
var fc = new flash_control("topflash");

function initf() {
  fc.init();
}

function fc_gf(id) {
  fc.show_gf(id);
}


// FlashControl object
function flash_control(id) {
  this.id = id;
  this.fo = null;
  
  this.init = fc_init;
  this.show_gf = fc_show_gf;
}

function fc_init() {
	var idstr = (is_ie) ? this.id + "_ie" : this.id + "_moz";
	this.fo = document.getElementById(idstr);
}

function fc_show_gf(id) {
  this.fo.SetVariable("gf_id", id);
  this.fo.GotoFrame(8);
  this.fo.Play();
}
