function init() {
	onload = insertMovie;
}
function insertMovie(src, width, height) {
	height += 16; // for the controller
	m = document.getElementById('movie');
	m.innerHTML = "<object CLASSID=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" width=\""+width+"\" height=\""+height+"\" CODEBASE=\"http://www.apple.com/qtactivex/qtplugin.cab\"><param name=\"src\" value=\""+src+"\">   <param name=\"autoplay\" value=\"true\">   <param name=\"loop\" value=\"false\">   <param name=\"controller\" value=\"true\">   <embed src=\""+src+"\" width=\""+width+"\" height=\""+height+"\" autoplay=\"true\" loop=\"false\" controller=\"true\" pluginspage=\"http://www.apple.com/quicktime/\"></embed>  </object>";
	s = document.getElementById('quicktime').style;
	s.width = width + "px";;
	s.height = height + "px";;
	s.marginLeft = Math.floor((742-width)/2) + "px";
	s.marginTop = Math.floor((475-height)/2)-30 + "px";
}

