  // Template for QuickTime/Flash panoramas
  //
  // Usage: 
  //    Place this file anywhere AFTER the target div
  //    Specify values for input variables - widthQT, widthFL, heightQT, heightFL, srcQT, srcFL


  var $ = redirect;


  // QuickTime content and Flash content are stored in an array
  // You can put as many items into the array as you wish.

  $.QTcontent_IE[0] =     // QT content for IE browser
                          // You can have $.QTcontent_IE[1], $.QTcontent_IE[2], etc.. if you need
  '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + widthQT + '" height="' + heightQT + '" >' +
  '<param name="cache" value="true">' +
  '<param name="scale" value="tofit">' +
  '<param name="src" value="' + srcQT + '">' +
  '<param name="controller" value="false">' +
  '<param name="kioskmode" value="true">' +
  '<' + '/object>';

  $.QTcontent_nonIE[0] =   // QT content for non-IE browsers
  '<embed src="' + srcQT + '" type="video/quicktime" width="' + widthQT + '" height="' + heightQT + 
  '" scale="tofit" cache="true" controller="false" kioskmode="true">' +
  '<' + '/embed>';

  $.FLASHcontent_IE[0] =    // Flash content for IE browser
  '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + widthFL + '" height="' + heightFL + '">' +
  '<param name="movie" value="' + srcFL + '">' +
  '<' + '/object>';

  $.FLASHcontent_nonIE[0] =  // Flash content for non-IE browsers
  '<embed src="' + srcFL + '" type="application/x-shockwave-flash" width="' + widthFL + '" height="' + heightFL + '">' +
  '<' + '/embed>';

  $.NEITHERcontent[0] =
  '<div style="padding-top:150px;">Sorry, but you do not have a sufficiently up to date QuickTime or Flash plug-in.<br/' + '>' +
  'Unable to display panorama<br/' + '><br/' + '>' +
  'Please <a href="http://www.apple.com/quicktime/download/">update your QuickTime</a> plugin, or <a href="http://get.adobe.com/flashplayer/">update your Flash</a> plugin.'
  '<' + '/div>';
  
  
  $.showContent('target0',0);    // put content (item 0 from content array) into target0 div


