document.observe("dom:loaded", function(){
	Shadowbox.init();
});

Shadowbox.init({
    // let's skip the automatic setup because we don't have any
    // properly configured link elements on the page
    //skipSetup: true,
    handleOversize: "none",
    autoDimensions: true,
    // include the html player because we want to display some html content
    players: ["iframe"]
});

function openFlip(vPageUrl){

    // open a welcome message as soon as the window loads
    Shadowbox.open({
        content:    vPageUrl,
        player:     "iframe",
        title:      "",
	width:      900,
        height:     670,
	options: {handleOversize:'none'}
    });

    return false;

};
