	function includeFlash(source, id, width, height) {
		document.writeln('<object type="application/x-shockwave-flash" ');
		document.writeln('id="' + id + '"');
		document.writeln('data="' + source + '"');
		document.writeln('width="' + width + '"');
		document.writeln('height="' + height + '">');
		document.writeln('<param name="movie" value="' + source + '" />');
		document.writeln('</object>');
	}

