// JavaScript Document

var popUpHtml = '<div id="plegde-popup"></div>';

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

function signThePledgePopUp() {

    // open a welcome message as soon as the window loads
    Shadowbox.open({
        content:    '<div id="pledgePopUpContainer" width="851px" height="404px"><img onclick="Shadowbox.close()" id="close" src="../images/global/PopUps/img-ovrlay-close.gif" width="55" height="11" /><iframe width="851px" scrolling="no" height="404px" frameborder="0" src="'+siteURL+'/pop-up/sign-the-pledge.php"></iframe></div>',
        player:     "html",
        type:       "html",
		handleOversize: "none",
        height:     404,
        width:      851
    });

};


