﻿function loadQuickTime(url,url2){
	var width=400;
	var height=316;
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="'+width+'" height="'+height+'">');
	document.write('<param name="ENABLEJAVAscript" value="true">');
	document.write('<param name="allowembedtagoverrides" value="true">');
	document.write('<param name="saveembedtags" value="true">');
	document.write('<param name="kioskmode" value="true">');
	document.write('<param name="target" value="myself">');
	document.write('<param name="src" value="'+url+'">');
	document.write('<param name="autoplay" value="true">');
	document.write('<param name="controller" value="true">');
	document.write('<param name="loop" value="false">');
	document.write('<param name="qtsrc" value="'+url2+'">');
	document.write('<param name="volume" value="50" />');
	document.write('<param name="scale" value="tofit">');
	document.write('<embed enablejavascript="true" src="'+url+'" type="video/quicktime" volume="50" width="'+width+'" height="'+height+'" scale="tofit" autoplay="true" qtsrc="'+url2+'" controller="true"  target="myself" loop="false" pluginspage="http://www.apple.com/jp/quicktime/">');
	document.write('</embed>');
	document.write('</object>');
}