//------------------------------------------------------------------------------

function displayWindow(url, width, height) {
    var top = screen.height/2 - height/2;
    var left = screen.width/2 - width/2;
    var Win = window.open(url, '', 'top=' + top + ', left=' + left + ', width=' + width + ', height=' + height + ', resizable=1, scrollbars=1, menubar=0, status=0' );
}

//------------------------------------------------------------------------------

function displayScrollWindow(url, width, height) {
    var top = screen.height/2 - height/2;
    var left = screen.width/2 - width/2;
    window.open(url, '', 'top=' + top + ', left=' + left + ', width=' + width + ', height=' + height + ', resizable=1, scrollbars=1, menubar=0, status=0' );
}

//------------------------------------------------------------------------------

function closeWindow() {
    window.opener.location.reload();
    window.close();
}

//------------------------------------------------------------------------------

function submitForm() {
    document.loginForm.submit();
}

//------------------------------------------------------------------------------

function submitEnter() {
    if ( window.event.keyCode==13 )
    document.loginForm.submit();
}

//------------------------------------------------------------------------------

