function insertFlashObject( oParams ){

	oDefaultParams = {
		'version'	:	'7',
		'width'		:	'100%',
		'height'	:	'100%'
	}

	for( var idx in oDefaultParams ){
		if( !oParams[idx] || typeof( oParams[idx] ) == 'undefined' ){
			oParams[idx] = oDefaultParams[idx];
		}
	}

	sOutput = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + oParams.version + ',0,0,0" width="' + oParams.width + '" height="' + oParams.height + '" id="map" align="middle">';

	for( var idx in oParams.params ){
		sOutput += '<param name="' + idx + '" value="' + oParams.params[idx] + '" />';
	}
	sOutput += '<embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="' + oParams.width + '" height="' + oParams.height + '"';
	for( var idx in oParams.params ){
		sOutput += ' ' + idx + '="' + oParams.params[idx] + '"';
	}
	sOutput += ' />';

	sOutput += '</object />';

	document.write( sOutput );
}