function insertMovie(movieloc,moviewidth,movieheight) {
	document.write('<object type="application/x-shockwave-flash" data="/flash/c.swf?path=');
	document.write(movieloc);
	document.write('" width="');
	document.write(moviewidth);
	document.write('" height="');
	document.write(movieheight);
	document.write('">');
	document.write('<param name="movie" value="/flash/c.swf?path=');
	document.write(movieloc);
	document.write('" />');
	document.write('<param name="loop" value="false" />');
	document.write('<param name="menu" value="false" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="#330000" />');
	document.write('</object>');

}