/*
QuickTime Poster Movie Swapper, version 2007-09-25
Written by David Battino, www.batmosphere.com
Works with Apple's AC_QuickTime.js to replace a clicked image with a QuickTime movie
See http://digitalmedia.oreilly.com/2007/07/16/quicktime-web-movie-secrets.html for details
OK to use if this notice is included
*/
  function loadMovie(triggerID,movieURL,movieWth,movieHt) {
  var embedcode = QT_GenerateOBJECTText_XHTML(movieURL,movieWth,movieHt,'');
  document.getElementById(triggerID).innerHTML=embedcode;
  }
  