<!------------------------------------------------------------------------
//
// FILE: 
//    PopAppHelpWin.js
//
// CREATOR:
//    Eric Wall
//    
// CREATED:
//    2003/02/10
//
// DESCRIPTION:
//    The PopAppHelpWin function is used by the loan application for displaying
//    error messages.
//  
// 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.
//
//----------------------------------------------------------------------->
defaultStatus = '';
browserName   = navigator.appName;
browserVer    = parseInt(navigator.appVersion);
function PopAppHelpWin(field, isJoint, customApp)
{
	if (browserVer >= 3)
	{
		url = 'ApplicationFieldError.aspx?FieldErrorID=' + field + '&IsJoint=' + isJoint + '&custom_app=' + customApp ;
		helpWindow = window.open(url,'helpWin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0,height=250,width=400');
	}
	return(false);
}

function GotoOtherIncome()
{
	if (window.focus && (navigator.appVersion.indexOf("MSIE 4") < 0 ))
		document.forms[0].PrimaryLiquidAssets.focus();
	return(false);
}
function GotoMailingAddress()
{
	if (window.focus && (navigator.appVersion.indexOf("MSIE 4") < 0 ))
		document.forms[0].PrimaryMailStreet.focus();
	return(false);
}
function GotoResType()
{
	if (window.focus && (navigator.appVersion.indexOf("MSIE 4") < 0 ))
		document.forms[0].PrimaryOwnResRadio.focus();
	return(false);
}

function GotoBillingChoice()
{
	if (window.focus && (navigator.appVersion.indexOf("MSIE 4") < 0 ))
		document.forms[0].AutoDebit.focus();
	return(false);
}




