function InsertMovie(movie, width, height) {
	document.write('<object type="application/x-shockwave-flash" data="/_swf/' + movie + '.swf" width="' + width + '" height="' + height + '">\n');
	document.write('<param name="movie" value="/_swf/' + movie + '.swf" />\n');
	document.write('<img src="/images_core/' + movie + '.jpg" border="0" width="' + width + '" height="' + height + '" alt="Bates Inc" usemap="noflashmap" />\n');
	document.write('</object>\n');
}

