var g_detailsWnd;

function modalboxShow(e, in_href, in_title)
{
    var in_width  = 800;
    var in_height = 580;

    g_detailsWnd = new Window({className: "dialog", width: in_width, height: in_height, zIndex: 100, url: in_href, title: in_title, showEffect:Effect.BlindDown, hideEffect: Effect.SwitchOff});
    g_detailsWnd.showCenter();

    return false;
}
