
function createYouHavItPlugin()
{  
    Silverlight.createObject(
        "youhaveit.xaml",
        parentElement,
        "mySilverlight",
        {   width:'250',
            height:'70',
            inplaceInstallPrompt:false,
            background:'#D6D6D6',
            isWindowless:'false',
            framerate:'30',
	    enableFramerateCounter: 'false',
            version:'1.0'},
        {   onError:null,
            onLoad:null},
        null);
}

function createViewShowPlugin()
{  
    Silverlight.createObject(
        "../viewshow.xaml", 
        parentElement,
        "myViewShow",
        {   width:'100%',
            height:'100%',
            inplaceInstallPrompt:false,
            background:'#000000',
            isWindowless:'false',
            framerate:'30',
	    enableFramerateCounter: 'true',
            version:'1.0'},
        {   onError:null,
            onLoad:onLoad
        },
        null);
}

function createViewImagesPlugin()
{  
    Silverlight.createObject(
        "../viewimages.xaml", 
        parentElement,
        "myViewImages",
        {   width:'100%',
            height:'100%',
            inplaceInstallPrompt:false,
            background:'#C0C0C0',
            isWindowless:'false',
            framerate:'30',
	    enableFramerateCounter: 'true',
            version:'1.0'},
        {   onError:null,
            onLoad:onLoad
        },
        null);
}
