function flashObject(strFlash, intWidth, intHeight, strId, strWMode, strBGColor, strQuality, strAlign, strNoFlash)
{
	document.write('<object type="application/x-shockwave-flash" data="'+strFlash+'" width="'+intWidth+'" height="'+intHeight+'">');
 	document.write('<param name="movie" value="'+strFlash+'" />');
 	document.write('<param name="wmode" value="'+strWMode+'" />');
 	document.write('<param name="quality" value="'+strQuality+'" />');
 	document.write(strNoFlash);
 	document.write('</object>'); 
}