// MGD site scripts

//IE fix for QuickTime movies
function LoadQTMovie(h,w,movie)
{
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'+w+'" height="'+h+'" codebase="http://www.apple.com/qtactivex/qtplugin.cab">            <param name="autoplay" value="true" />            <param name="controller" value="true" />            <param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" />            <param name="target" value="myself" />            <param name="type" value="video/quicktime" />            <param name="src" value="'+movie+'" />            <embed src="'+movie+'" width="'+w+'" height="'+h+'" autoplay="true" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself"></embed>          </object>');
}

