function flashMovie(location, id, width, height, menu, replacement_img) {
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,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('<param name="scale" value="Showall">');
	//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/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" />');
	document.writeln('</object>');
}


