<!--
/*
    Pop-Up Framework

    Author:     CAB
    Version:    1.0

    This file gets included by the banner porltet and therefore is accessible to every portlet and every HOSTED gateway
    page. If your gateway page is not HOSTED, you need to include this file if you want to launch pop-up windows from
    that page.
*/

function openSmallWindow(url, name)
{
    openCustomWindow(url, name, 400, 175, "no");
}

function openSmallResizableWindow(url, name)
{
    openResizableWindow(url,name, 400, 175, "no", "yes");
}

function openMediumWindow(url, name)
{
    openCustomWindow(url, name, 400, 400, "yes");
}

function openMediumResizableWindow(url, name)
{
    openResizableWindow(url, name, 400, 400, "yes", "yes");
}

function openCustomWindow(url, name, width, height, scrollbars)
{
    window.open(url, name, "top=" + (screen.height - height)/2 + ",left=" + (screen.width - width)/2 +
        ",scrollbars=" + scrollbars + ",resizable=no,width=" + width + ",height=" + height);
}

function openResizableWindow(url, name, width, height, scrollbars, resize)
{
    window.open(url, name, "top=" + (screen.height - height)/2 + ",left=" + (screen.width - width)/2 +
        ",scrollbars=" + scrollbars + ",resizable=" + resize + ",width=" + width + ",height=" + height);
}
// -->

