///////////////////////////////////////////////////////////////////////////////
//
//  createSilverlight.js   			version 1.1
//
//  This file is provided by DPE Indonesia as a helper file for websites that
//  incorporate TS Web Access.
//  For more information about usage, feel free to ping:
//  NARENDA WICAKSONO
//  IT PRO EVANGELIST(i-narenw@microsoft.com)
//  http://wss-id.org/blogs/narenda
//  http://geeks.netindonesia.net/blogs/narn
//  http://narenda.mvps.org
//
////////////////////////////////////////////////////////////////////////////////

function createSilverlight()
{
    
    Silverlight.createObjectEx({
        source: "cooltswebaccess.xaml",
        parentElement: document.getElementById("SilverlightControlHost"),
        id: "SilverlightControl",
        properties: {
            width: "1000",
            height: "500",
            background:"#333",
            isWindowless: "false",
            framerate:"30",
            version: "1.0"
        },
        events: {
        }
    });
}