The <object> element contains a series of <param> elements that specify additional options to the Silverlight plug-in.
source: A URI that points to the XAP file for your Silverlight application. This parameter is required.
onError: A JavaScript event handler that's triggered when a unhandled error occurs in the Silverlight plug-in or in your code. The onError event handler is also called if the user has Silverlight installed but doesn't meet the minRuntimVersion parameter.
background: The color that's used to paint the background of the Silverlight content region, behind any content that you display(but in front of any HTML content that occupies the same space). If you set the Background property of a page, it's painted over this background.
minRuntimeVersion: This is the minimum version of Silverlight that the client must have in order to run your application. If you need the features of Silverlight 3, set this to 3.0.40624.0(as silghtly earlier versions may correspond to beta builds). If Silverlight 2 is sufficient, use 2.0.31005.0.
autoUpgrade: A Boolean that specifies whether Silverlight should (if it's installed and has an insufficient version number) attempt to update itself. The default is true. You may set choose to set this to false to deal with version problems on your own using the onError event, as described in the "Creating a Friendly Install Experience" section.
enableHtmlAccess: A Boolean that specifies whether the Silverlight plug-in has access to the HTML object model. Use true if you want to be able to interact with the HTML elements on the test page through your Silverlight code.
initParams: A string that you can use to pass custom initialization information. This technique is useful if you plan to use the same Silverlight aplication in different ways on different pages.
splashScreenSource: The location of a XAML splash screen to show while the XAP file is downloading.
windowless: A Boolean that specifies whether the plug-in renders in windowed mode (the default) or windowless mode. If you set this true, the HTML content underneath your Silverlight content region can show through. This is ideal if you're planning to create a shaped Silverlight control that integrates with HTML content.
onSourceDownloadProgressChanged: A JavaScript event handler that's triggered when a piece of the XAP file has been downloaded. You can use this event handler to build a startup progress bar.
onSourceDownloadComplet: A JavaScript event handler that's triggered when the entire XAP file has been downloaded.
onLoad: A JavaScript event handler that's triggered when the markup in the XAP file has been processed and your first page has been loaded.
onResize: A JavaScript event handler that's triggered when the size of a Silverlight content region has changed.