function FlvPlayer( file )
{
	this.file = file;
	this.width = 200;
	this.height = 100;
	this.autostart = "false";
	this.autosize = "false";
	this.autorew = "false";
	this.bgcolor = "#999999";
	this.title = "";
	//alert('done');

	this.Render = function()
	{
		var html;
		
		html = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"" + this.width + "\" height=\"" + this.height + "\"";
		html += "><param name=\"allowScriptAccess\" value=\"always\">";
		html += "<param name=\"movie\" value=\"http://www.codeordie.org/swf/player.swf?file=" + this.file + "&size="+this.autosize+"&aplay="+this.autostart+"&autorew="+this.autorew+"&title="+this.title+"\">";
		html += "<param name=\"menu\" value=\"false\">";
		html += "<param name=\"quality\" value=\"high\">";
		html += "<param name=\"bgcolor\" value=\"#999999\">";
		html += "<embed src=\"http://www.codeordie.org/swf/player.swf?file=" + this.file + "&size="+this.autosize+"&aplay="+this.autostart+"&autorew="+this.autorew+"&title="+this.title+"\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + this.width + "\" height=\"" + this.height + "\"";
		html += "></embed>";
		html += "</object>";
		
		//alert(html);
		document.write(html);
		
	};
}