function launchQT(url){
	var qt = AC.Quicktime.packageMovie('movie', 'qtbutton.mov', {
		href: url,
		autohref: true,
		target: "quicktimeplayer",
		width: 1,
		height: 1,
		autoplay: false,
		controller: false,
		cache: true
	});
	$('qtcontent').appendChild(new Element('div', { 'id':'hd-qt'}))
	$('hd-qt').appendChild(qt);
}	
	
/*
1) Include all the script references in the <head>

	<script src="http://wdirect.apple.com/global/scripts/browserdetect.js" type="text/javascript" charset="utf-8"></script>
	<script src="http://wdirect.apple.com/global/scripts/lib/prototype.js" type="text/javascript" charset="utf-8"></script>
	<script src="http://wdirect.apple.com/global/scripts/ac_quicktime.js" type="text/javascript" charset="utf-8"></script>	
	<script src="includes/quicktime_launcher.js" type="text/javascript" charset="utf-8"></script> 
	
2) Include the following in the body

	<div id="content"></div><div id="hd-qt"></div>

3) Add qtbutton.mov

*/