var Flash = Class.create();
Flash.prototype = {
  initialize: function(swfFile, width, height, divID) {
	this.swfFile = swfFile;
	this.width = width;
	this.height = height;
	this.divID = divID;

	this.loadFlash()
  },

	loadFlash: function()
	{
		swfobject.embedSWF(this.swfFile, this.divID, this.width, this.height, '9.0.0', '/khl/flash/expressInstall.swf');
	}
};
