function theFlash(){
	this.width;
	this.height;
	this.classID;
	this.code;
	this.src;
	this.objType;

	this.createObject = function(){
		switch (this.objType)
		{
			case 1:
				theType = "<Object";
		}
					
		theType = theType + " width='" + this.width + "' height='" + this.height + "' class='" + this.classID + "' codebase='" + this.code + "'>"
		document.write(theType);
	}

	this.param = function(theName, theVal){
		document.write("<param name='" + theName + "' value='" + theVal + "'>")
	}

	this.mBed = function(src, wdth, ht, quality, plugin, type1, menu){
		embed = "<embed src='" + src + "' width='" + wdth + "' height='" + ht + "'";
		embed = embed + " quality='" + quality + "' pluginspage='" + plugin + "'";
		embed = embed + " type='" + type1 + "' menu='" + menu + "'></embed>"
		document.write(embed);
	}


	this.end = function(){
		document.write("</object>");
	}
}