function InsertMovie(movie, width, height, alt, altheight, altwidth) {
	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="/_img/' + alt + '.jpg" border="0" width="' + altwidth + '" height="' + altheight + '" alt="" />\n');
	document.write('</object>\n');
}

