/*
This file contains the loadMovie function, as described in David Battino's article 
http://www.oreillynet.com/pub/a/oreilly/digitalmedia/2007/07/16/quicktime-web-movie-secrets.html
OK to use if this notice is included.
*/

function loadBatMovie(triggerID,movieURL,movieWidth,movieHeight) {
	var embedcode = QT_GenerateOBJECTText_XHTML(movieURL,movieWidth,movieHeight,'');
	document.getElementById(triggerID).innerHTML=embedcode;
}
