function setReel(id, movieFile, width, height){ 
	var whichHolder = "qtwindow-"+id;
 	document.getElementById(whichHolder).innerHTML= 
 	'<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"' + 
 	' codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="'+width+'" height="'+height+'" id="movie1">' + 
 	'<param name="src" value="'+movieFile+'">' + 
 	'<embed width="'+width+'" height="'+height+'" enablejavascript="true" name="movie1"' + 
 	' src="'+movieFile+'">' + 
 	'</embed></object>' 
 }

