function putFlash(file, width, height, style){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + width + '" height="' + height + '" style="' + style + '" VIEWASTEXT id=ShockwaveFlash2>');
	document.write('	<param NAME="movie" VALUE="' + file + '">');
	document.write('	<param NAME="quality" VALUE="high">');
	document.write('	<param name="wmode" value="transparent">');
	document.write('	<embed width="' + width + '" height="' + height + '" wmode="transparent" src="' + file + '" style="' + style + '"></embed>');
	document.write('</object>');
}

function putFlashTimed(file, width, height, style, id, time){
	var text = '';
	text += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + width + '" height="' + height + '" style="' + style + '" VIEWASTEXT id=ShockwaveFlash2>';
	text += '	<param NAME="movie" VALUE="' + file + '">';
	text += '	<param NAME="quality" VALUE="high">';
	text += '	<param name="wmode" value="transparent">';
	text += '	<param name="loop" value="-1">';
	text += '	<embed width="' + width + '" height="' + height + '" wmode="transparent" src="' + file + '" style="' + style + '"></embed>';
	text += '</object>';
	window.setTimeout(function(){document.getElementById(id).innerHTML = text;},time);
}
function putFlashRet(file, width, height, style){
	var text = '';
	text += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + width + '" height="' + height + '" style="' + style + '" VIEWASTEXT id=ShockwaveFlash2>';
	text += '	<param NAME="movie" VALUE="' + file + '">';
	text += '	<param NAME="quality" VALUE="high">';
	text += '	<param name="wmode" value="transparent">';
	text += '	<param name="loop" value="-1">';
	text += '	<embed width="' + width + '" height="' + height + '" wmode="transparent" src="' + file + '" style="' + style + '"></embed>';
	text += '</object>';
	return text;
}


