function flashMovie(location, id, width, height, menu, replacement_img) {
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" id="'+id+'" width="'+width+'" height="'+height+'">');
	document.writeln('<param name="movie" value="'+location+'">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="menu" value="'+menu+'">');
	document.writeln('<param name="WMode" value="Transparent">');
	document.writeln('<img src="'+replacement_img+'">');
	document.writeln('<embed src="'+location+'" quality="high" width="'+width+'" height="'+height+'" swLiveConnect=true id="'+id+'" name="'+id+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.writeln('</object>');
}