// JavaScript Document

Shadowbox.init({
    // skip the automatic setup again, we do this later manually
    skipSetup: true
});

window.onload = function() {

    // set up all anchor elements with a "movie" class to work with Shadowbox
    Shadowbox.setup("a.callBack", {
        
        player:     "iframe",
        title:      "Call back request form",
        height:     700,
        width:      940
    });

};
