function flashMovie(location, FLV, 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="flashVars" value="test='+FLV+'">');
	
	document.writeln('<param name="quality" value="high">');

	document.writeln('<param name="menu" value="'+menu+'">');

	//document.writeln('<param name="bgcolor" value="#FFFFFF">');

	document.writeln('<param name="WMode" value="Transparent">');

	document.writeln('<param name="scale" value="exactfit">');

	//document.writeln('<img src="'+replacement_img+'">');

	document.writeln('<embed src="'+location+'" flashVars="test='+FLV+'" 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>');

}