﻿function writeFlash(fId,swfLoc,flashVars,width,height) {
	//alert("writing");
	var bgcolor = null;
	document.writeln('<object id="'+fId+'" align="bottom" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'">');
	document.writeln('<param name="allowScriptAccess" value="always"/>');
	document.writeln('<param name="movie" value="'+swfLoc+'"/>');
	document.writeln('<param name="data" value="'+swfLoc+'"/>');
	document.writeln('<param name="quality" value="high"/>');
	document.writeln('<param name="salign" value="lt" />');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<param name="bgcolor" value="#3f4447" />');
	document.writeln('<param name="FlashVars" value="'+flashVars+'"/>');
	document.writeln('<embed name="'+fId+'" src="'+swfLoc+'" FlashVars="'+flashVars+'" bgcolor="'+bgcolor+'" align="top" salign="lt" wmode="transparent" allowScriptAccess="always" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" vspace="0" hspace="0"></embed>');
	document.writeln('</object>');
	//alert("done writing");
}

