function openTestimonialOverlayScreen(id, action)
{
var contactPopup = new Window(id, {
className: "alphacube",
url: action ,
width: 790,
height: 725,
draggable: false,
resizable: false,
minimizable: false,
maximizable: false,
closable: true,
recenterAuto :false
});
contactPopup.setZIndex(99999);
contactPopup.setDestroyOnClose();
contactPopup.showCenter(true);
}
function showAdvCalcOverlay (id, action )
{
var contactPopup = new Window(id, {
className: "alphacube",
url: action ,
width: 590,
height: 578,
draggable: false,
resizable: false,
minimizable: false,
maximizable: false,
closable: true,
wiredDrag:true,
recenterAuto :false
});
contactPopup.setZIndex(99999);
contactPopup.setDestroyOnClose();
contactPopup.showCenter(true);
}
function redirectUrl(action)
{
window.parent.location.href = action;
}
