// JavaScript Document
<!--

function loadQuickTime(url,width,height, autoplay){
	
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" ');
	document.write('width="'+width+'" height="'+height+'" ');
	document.write('codebase="http://www.apple.com/qtactivex/qtplugin.cab">');
	document.write('<param name="src" value="'+url+'">');
	document.write('<param name="autoplay" value="'+autoplay+'">');
	document.write('<param name="controller" value="true">');
	document.write('<param name="loop" value="false">');
	document.write('<embed src="'+url+'" type="video/quicktime"	width="'+width+'" height="'+height+'" autoplay="'+autoplay+'" controller="true" loop="false" pluginspage="http://www.apple.com/jp/quicktime/">');
	document.write('</embed>');
	document.write('</object>');
}

function qtChange(url,width,height, autoplay){
	//window.alert("tesuto");
	document.getElementById("movie").innerHTML = '<embed src="top.mov" width="320" height="196" autostart="true"></embed>';
}
//-->

