
function makeFlash(id,w,h,src,wmode,bg,fvar,hidecss,loadcss,tagstart,tagend)
{
	document.writeln(tagstart);
	document.writeln('<object id="' + id + '" width="' + w + '" height="' + h + '" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">');
	document.writeln('<param name="movie" value="'+src+'">');
	document.writeln('<param name="wmode" value="' + wmode + '">');
	document.writeln('<param name="bgcolor" value="' + bg + '">');
	document.writeln('<param name="FlashVars" value="' + fvar + '">');
	document.writeln('<param name="menu" value="false">');
	document.writeln('<embed name="' + id + '" src="' + src + '" width="' + w + '" height="' + h + '" play="true" flashvars="' + fvar + '" menu="false" wmode="' + wmode + '" bgcolor="' + bg + '" pluginspage="http://www.adobe.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
	document.writeln('</object>');
	document.writeln(tagend);
}
	

