// JavaScript Document
function ModalPopupsAlert1() {
    ModalPopups.Alert("jsAlert1",
        "Save Footer Information",
        "<div style='padding:25px;'>The footer information has been saved succesfully<br/>" +
        "to the customer database...<br/></div>", 
        {
            okButtonText: "Close"
        }
    );
}
function ModalPopupsIndicator2() {
    ModalPopups.Indicator("idIndicator2",
        "Please wait",
        "<div style=''>" + 
        "<div style='float:left;'><img src='http://seopagepro/imges/spinner.gif'></div>" + 
        "<div style='float:left; padding-left:10px;'>" + 
        "Saving footer information... <br/>" + 
        "This may take 5 seconds." + 
        "</div>", 
        {
            width: 300,
            height: 100
        }
    );
            
    setTimeout('ModalPopups.Close(\"idIndicator2\");', 5000);
}
