// JavaScript Document
/*Shadowbox.init({
    // let's skip the automatic setup because we don't have any
    // properly configured link elements on the page
    skipSetup: true
});
*/
Shadowbox.init();

function OpenShadoBox(ShadowBoxFileName,ShadowBoxTitle,ShadowBoxHeight,ShadowBoxWidth) {
    Shadowbox.open({
        content:    ShadowBoxFileName,
        player:     "iframe",
        title:      ShadowBoxTitle,
        height:     ShadowBoxHeight,
        width:      ShadowBoxWidth
   });
}
