function CreateQuickTimeControl(ElementID, URL, w, h)
{
	var d = document.getElementById(ElementID);
	d.innerHTML = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="240" height="196" codebase="http://www.apple.com/qtactivex/qtplugin.cab">' +
		'<param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html">' +
		'<param name="src" value="' + URL + '">' +
		'<param name="target" value="myself">' +
		'<param name="type" value="video/quicktime">' +
		'<param name="controller" value="true">' +
		'<param name="bgcolor" value="000000">' +
		'<param name="autoplay" value="true">' +
		'<embed src="' + URL + '" width="' + w + '" height="' + h + '" autoplay="true" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime" bgcolor="000000"></embed>' +
		'</object>';
	/*
	d.innerHTML = '<embed src="' + URL + '" width="' + w + '" height="' + h + '" autoplay="true" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime" bgcolor="000000"></embed>';
	*/
}

function QuickTimeVirtualTour(ElementID, URL, w, h)
{
	var d = document.getElementById(ElementID);
	d.innerHTML = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + w + '" height="' + h + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab">' +
      	'<param name="src" value="' + URL + '">' +
      	'<param name="autoplay" value="true">' +
      	'<param name="controller" value="true">' +
      	'<param name="scale" value="tofit">' +
      	'<embed src="' + URL + '" width="' + w + '" height="' + h + '" cache="true" controller="true" scale="tofit" pluginspage="http://www.apple.com/quicktime/download"></embed>' +
    	'</object>';
}
