//-------------------------------------------------------------------
// Property of ButtonBox Enterprises, Inc.
//
// Copyright (C) 2004, ButtonBox Enterprises, Inc.
// All Rights Reserved.
//-------------------------------------------------------------------

function InitFocus() {
    document.VmailLogin.mailbox.focus();
}

function openPopup() {
    var width = 450, height = 310;

    var xMax = screen.availWidth, yMax = screen.availHeight;
    var xOffset = (xMax - width)/2, yOffset = (yMax - height)/2;

    window.open('./templates/remember_me.html',
                'MyPopUp',
                'toolbar=0,scrollbars=0,status=no,' +
                'width='+ width +',height='+ height +',' +
                'screenX='+ xOffset +',screenY='+ yOffset +
                ',left='+ xOffset +',top='+ yOffset
               );
}

