function embed_quicktime(filename, width, height) 
{ 
	if (filename != "")
	{
        var randomnumber=Math.floor(Math.random()*101)
		document.write('<div id="player');
		document.write(randomnumber);
		document.write('">This text will be replaced</div>');  
		var so = new SWFObject('/storage/scripts/mediaplayer/player.swf','mpl',width,height,'9');
		so.addParam('allowscriptaccess','always');
		so.addParam('allowfullscreen','true');
		so.addParam('flashvars','&file=' + filename);
		so.write('player'+randomnumber);
//		document.write('<object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="' + width + '" \
//					height="' + height + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=fl,0,2,0"> \
//					<param name="src" value="’ + filename + ‘" /><embed type="video/quicktime" width="' + width + '" \
//					height="' + height + '" src="' + filename + '"></embed></object>');
	}
}
