/*
	Compatibile XHTML Embed movies displayer
	Author 	: Razvan Stanga
	Website : http://www.phprebel.org/
	Date 	: 2006-04-06 12:36
*/

function embedMovie () {
	this._src = '';
	this._width = 0;
	this._height = 0;
}

embedMovie.prototype.setMovie = function (_src, _width, _height) {
	this._src 		= _src;
	this._width 	= _width;
	this._height 	= _height;
}

embedMovie.prototype.display = function () {
	var _txt 	= '';
	_txt += '<embed width="'+this._width+'" height="'+this._height+'" src="'+this._src+'" type="application/x-mplayer2" autostart="1" enabled="1" showstatusbar="1" showcontrols="1" showdisplay="0" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,0,0"></embed>\n';
	document.write (_txt);
}
