﻿// JScript File
function Insert360Photo(photoUrl, width, height)
{
  document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'+width+'" height="'+height+'" type="video/quicktime" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
  document.write('<param name="src" value="'+photoUrl+'">\n');
  document.write('<param name="autoplay" value="true">\n');
  document.write('<param name="controller" value="false">\n');
  document.write('<embed src="'+photoUrl+'" width="'+width+'" height="'+height+'" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" autoplay="true" controller="false"></embed>\n');
  document.write('</object>\n');
}

