var VideoPlayer = function(swf) {
	this.swf = swf;	
}

VideoPlayer.prototype.write = function(holder) {
	var html = '<embed src="'+this.swf+'" width="700" height="500" menu="false" quality="high" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	
	if (holder) {
		document.getElementById(holder).innerHTML = html;
	} else {
		document.write(html);
	}
}

