/*
$ style/js/InsertSWF.js | 2006/09/08 11:05 $
$ LM: 2008/05/07 14:57 $
*/

function InsertSWF (swfName, swfWidth, swfHeight, swfBg, swfVars, swfID)
{
	this.Insert = function Insert ()
	{
		document.write (result);
	}
	var result = '<object type="application/x-shockwave-flash" data="' + swfName + '" id="' + swfID + '" width="' + swfWidth + '" height="' + swfHeight + '" >';
	result += '	<param name="allowScriptAccess"	value="sameDomain" />';
	result += '	<param name="movie"		value="' + swfName + '" />';
	result += '	<param name="quality"		value="best" />';
	result += '	<param name="menu"		value="false" />';
	result += '	<param name="scale"		value="exactfit" />';
	result += '	<param name="wmode"		value="transparent" />';
	result += '	<param name="bgcolor"		value="' + swfBg + '" />';
	result += '	<param name="flashvars"		value="' + swfVars + '" />';
	result += '</object>';
}
