// function fot qtvr with spin control
// qtvr path : /qvr/mov/
// spincontrol path : /qvr/mov/
function plugin_qt_load(na, w, h) {
	//
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" ');
	document.write('codebase="http://www.apple.com/qtactivex/qtplugin.cab" ');
	document.write('width="'+w+'%" height="'+h+'%"> ');
	document.write('<param name="src" value="/qvr/mov/'+na+'"> ');
	document.write('<param name="autoplay" value="true"> ');
	document.write('<param name="controller" value="false"> ');
	document.write('<param name="cache" value="true"> ');
	document.write('<param name="scale" value="tofit"> ');
	document.write('<param name="bgcolor" value="#000000"> ');
	document.write('<param name="kioskmode" value="true"> ');
	// document.write('<param name="moviename" value="spincontrolled"> ');
	//
	document.write('<embed type="video/quicktime" ');
	document.write('pluginspage="http://www.apple.com/quicktime/download/" ');
	document.write('src="/qvr/mov/'+na+'" ');
	document.write('autoplay="true" ');
	document.write('width="'+w+'%" height="'+h+'%" ');
	document.write('controller="false" ');
	document.write('cache="true" ');
	document.write('scale="tofit" ');
	document.write('kioskmode="true" ');
	// document.write('moviename="spincontrolled">');
	document.write('</embed> ');
	//
	document.write('</object> ');
	//
}

