<!------------------------------------------------------------------------
//
// FILE: 
//    PopTermLookup.js
//
// CREATOR:
//    Eric Wall
//    
// CREATED:
//    2003/07/16
//
// DESCRIPTION:
//    The popVerisignWin function is used pop-up a new window in order to
//    display our registration with Verisign.
//  
// Copyright (C) 2003 Capital One Financial Corporation.  All Rights Reserved.
//
// All data and information contained in or disclosed by this document is 
// confidential and the proprietary information of Capital One Financial 
// Corporation and all rights therein are expressly reserved. By accepting this
// material the recipient agrees that this material and the information 
// contained therein is held in confidence and in trust and will not be used, 
// copied, reproduced in whole or in part, nor its contents revealed in any 
// manner to others without the express written permission of Capital One 
// Financial Corporation.
//
//----------------------------------------------------------------------->
function PopTermLookup(url, winWidth, winHeight) 
{
  termWin = window.open(url,'','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + winWidth + ',height=' + winHeight);
}


function PopLookupNoResize(url, winWidth, winHeight) 
{
  termWin = window.open(url,'','toolbar=0,location=0,status=no,menubar=no,scrollbars=1,resizable=no,width=' + winWidth + ',height=' + winHeight);
}

