function showMovie ( theId, theUrl, theWidth, theHeight, thePoster ) {

	var thisObject = new Element('object',{
		'width': theWidth,
		'height': theHeight,
		'classid': 'clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B',
		'codebase': 'http://www.apple.com/qtactivex/qtplugin.cab#version=7,0,0,0'
	});

	thisObject.adopt(new Element('param',{'name':'type',		'value':'video/quicktime'}));
	thisObject.adopt(new Element('param',{'name':'autoplay',	'value':'true'}));
	thisObject.adopt(new Element('param',{'name':'pluginspage',	'value':'http://www.apple.com/quicktime/download/'}));

	if (thePoster) {
		thisObject.adopt(new Element('param',{'name':'src',			'value':thePoster}));
		thisObject.adopt(new Element('param',{'name':'href',		'value':theUrl}));
		thisObject.adopt(new Element('param',{'name':'target',		'value':'myself'}));
		thisObject.adopt(new Element('param',{'name':'controller',	'value':'false'}));
	} else {
		thisObject.adopt(new Element('param',{'name':'src',			'value':theUrl}));
	}

	var thisEmbed = new Element('embed',{
		'width': theWidth,
		'height': theHeight,
		'type': 'video/quicktime',
		'bgcolor': '#000000',
		'border': '0',
		'pluginspage': 'http://www.apple.com/quicktime/download/'
	});

	if (thePoster) {
		thisEmbed.src = thePoster;
		thisEmbed.href = theUrl;
		thisEmbed.target = 'myself';
		thisEmbed.controller = 'false';
	} else {
		thisEmbed.src = theUrl;
	}

	thisObject.adopt(thisEmbed);
	
	$(theId).adopt(thisObject);

}
