function swap_in_quicktime(swap_target, video_url, img_width, img_height) {
	swap_target.innerHTML = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="256" width="320"><param name="src" value="' + video_url + '"/><param name="autoplay" value="true"/><param name="controller" value="true"/><embed width="' + img_width + '" height="' + img_height + '" src="' + video_url + '" pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" controller="true" autoplay="true"/></object>';
}
function swap_in_video(swap_target, video_url, img_width, img_height) {
	swap_target.innerHTML = '<object id="MediaPlayer" width="320" height="290" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" standby="Loading Windows Media Player components..." type="application/x-oleobject"><param name="filename" value="' + video_url + '"/><param name="autoStart" value="true"/><param name="animationatStart" value="true"><param name="ShowStatusBar" value="true"/><param name="Volume" value="1"/><param name="ShowTracker" value="true"/><param name="ShowAudioControls" value="true"/><param name="ShowPositionControls" value="true"/><embed type="application/x-mplayer2" src="' + video_url + '" width="' + img_width + '" height="' + img_height + '" autoStart="true" ShowStatusBar="true" Volume="0" ShowTracker="false" ShowAudioControls="false" ShowPositionControls="false"></embed></object>';
}
