/*
 * This file contains the loadMovie function. This comes from 
* http://www.oreillynet.com/pub/a/oreilly/digitalmedia/2007/07/16/quicktime-web-movie-secrets.html
 */
function loadMovie(triggerID,movieURL,movieWth,movieHt) {
	var embedcode = QT_GenerateOBJECTText_XHTML(movieURL, movieWth, movieHt, '');
	document.getElementById(triggerID).innerHTML=embedcode;
}

