﻿//Function top call from the page that is in the ShadowBox to close it
function closeShadowBox() {
    parent.closeSB();
}
//Search the value of the hiddenField with ID=id and close the ShadowBox
function checkCallBack(id) {
    var hiddenField = document.getElementById(id);
    if (hiddenField.value == "close")
    {
        parent.refreshSB();
    }
}
