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://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0">');
	document.writeln('<param name="movie" value="'+src+'"><param name="menu" value="false"><param name="wmode" value="'+wmode+'"><param name="bgcolor" value="'+bg+'"><param name="FlashVars" value="'+fvar+'">');
	document.writeln('<embed name="'+id+'" src="'+src+'" menu=false width="'+w+'" height="'+h+'" flashvars="'+fvar+'" wmode="'+wmode+'" bgcolor="'+bg+'" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"></embed>');
	document.writeln('</object>');
	document.writeln(tagend);
}
	
function makeFlashWithLink(id,w,h,src,wmode,bg,fvar,hidecss,loadcss,tagstart,tagend,linkTargetURL){
	document.writeln(tagstart);
	document.writeln('<object id="'+id+'" width="'+w+'" height="'+h+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" onMouseDown="window.open(\''+linkTargetURL+'\')">');
	document.writeln('<param name="movie" value="'+src+'"><param name="menu" value="false"><param name="wmode" value="'+wmode+'"><param name="bgcolor" value="'+bg+'"><param name="FlashVars" value="'+fvar+'">');
	document.writeln('<embed name="'+id+'" src="'+src+'" menu=false width="'+w+'" height="'+h+'" flashvars="'+fvar+'" wmode="'+wmode+'" bgcolor="'+bg+'" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"></embed>');
	document.writeln('</object>');
	document.writeln(tagend);
}
	

