function Flash(oOptions)
{
	this.opt = oOptions;
	this.init();
}

Flash.prototype.init = function ()
{
	 document.write('<object type="application/x-shockwave-flash" data="' +this.opt.sFile + '" width="' + this.opt.sWidth + '" height="' + this.opt.sHeight + '">');
	 document.write('<param name="movie" value="' + this.opt.sFile + '" />');
	 if (typeof(this.opt.sFlashVars) != 'undefined')
	  document.write('<param name="flashvars" value="" />');
	 document.write('<param name="quality" value="high" />');
	 document.write('<param name="wmode" value="transparent" />');
	 document.write('<param name="menu" value="false" />');
	 document.write('<param name="loop" value="true" />');
//	 document.write('<img src="' + oBase.oPath.imageURL + '/' + this.opt.sAltImage + '" alt="" />');
	 document.write('</object>');
}
