function showMovie(play_mc, href_mc, width, height) {

	height += 16;

	document.write('<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + width + '" height="' + height + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab">');
	document.write('<param name="src" value="' + href_mc + '">');
	document.write('<param name="autoplay" value="false">');
	document.write('<param name="controller" value="true">');
	//document.write('<param name="href" value="' + href_mc + '">');
	//document.write('<param name="target" value="myself">');
	//document.write('<embed src="' + play_mc + '" width="' + width + '" height="' + height + '" controller="false" autoplay="true" href="' + href_mc + '" target="myself" pluginspage="http://www.apple.com/de/quicktime/download/"></embed>');
	document.write('<embed src="' + href_mc + '" width="' + width + '" height="' + height + '" controller="true" autoplay="false" pluginspage="http://www.apple.com/de/quicktime/download/"></embed>');
	document.write('</object>');
	
}
