﻿
function createSilverlight_Home_Highlights()
{  

    Silverlight.createObjectEx({
        source: 'SL_Home_Highlights_v1/Page.xaml',         // Source property value, referencing an ID in the HTML DOM.
        parentElement:document.getElementById("Home_Highlights_SilverlightControlHost"),    // DOM reference to hosting DIV tag.
        id:'SilverlightControl',                  // Unique plug-in ID value.
        properties:{                    // Plug-in properties.
            width:'750',                // Width of rectangular region of plug-in, in pixels.
            height:'20',                // Height of rectangular region of plug-in, in pixels.
            background:'White',       // Background color of plug-in.
            version:'1.0'},             // Plug-in version.
        events:
            {
                onLoad:null}             // OnLoad property value -- event handler function name.
            }
            );
}

