function CFlash(swf, width, height)
{
	this.swf           = swf;
	this.width         = width;
	this.height        = height;

	this.wmode         = "";
	this.id            = "";
	this.quality       = "high";
	this.menu          = "false";
	this.swliveconnect = "";
	this.bgcolor       = "";

	this.Apply = function()
	{
		var option = "";
		var html   = "";
		
		if (this.id != "")
		{
			option += " id='" + this.id + "'";
			option += " name='" + this.id + "'";
		}

		if (this.wmode != "")
			option += " wmode='" + this.wmode + "'";

		if (this.swliveconnect != "")
			option += " swliveconnect='" + this.swliveconnect + "'";

		if (this.bgcolor != "")
			option += " bgcolor='" + this.bgcolor + "'";

		html += "<embed src='" + this.swf + "' " + option + " menu='" + this.menu + "' quality='" + this.quality + "' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + this.width + "' height='" + this.height + "'></embed>";
		
		document.write(html);
	}
}