function ConfirmChoiceold(vurl) 
{ 
	var fRet;
	var geturl;
	
	geturl = vurl; 
	fRet = confirm("You are now leaving Sooper Credit Union's website and visiting a partner services site. Sooper Credit Union is not responsible for services or products affiliated with partner sites."); 
	//alert(fRet); 
	if (fRet !=0)
	{ 
		window.open(geturl);
		//location = "http://www.centennial-lending.com" 
	} 
} 

function ConfirmChoice(vurl)
{
    var geturl;	
	geturl = vurl; 
    var winOptions = 'scrollbars=yes,resizable=yes,fullscreen=no,channel mode=no,status=no,toolbar=no,menubar=no,location=n o,directories=no,height=500,width=922';
    var target = '_blank';
    var fRet;
    fRet = confirm("You are now leaving Sooper Credit Union's website and visiting a partner services site. Sooper Credit Union is not responsible for services or products affiliated with partner sites."); 
	if (fRet !=0)
		{
			var oWin = window.open(geturl,target,winOptions);
			//alert(oWin);
			if (oWin==null || typeof(oWin)=='undefined')
			{			
					//alert("true");
					location = geturl;
					return true;		               
			}
			else
			{
				        
			}
		}
    
}

function IsPopupBlocker(vurl)
{
    var geturl;	
	geturl = vurl; 
    var winOptions = 'scrollbars=yes,resizable=yes,fullscreen=no,channel mode=no,status=no,toolbar=no,menubar=no,location=n o,directories=no,height=500,width=922';
    var target = '_blank';
    var fRet;
    fRet = confirm("You are now leaving Sooper Credit Union's website and visiting a partner services site. Sooper Credit Union is not responsible for services or products affiliated with partner sites."); 
	if (fRet !=0)
		{
			var oWin = window.open(geturl,target,winOptions);
			//alert(oWin);
			if (oWin==null || typeof(oWin)=='undefined')
			{			
					//alert("true");
					location = geturl;
					return true;		               
			}
			else
			{
				        
			}
		}    
}

function IsPopupBlockerChk(vurl)
{
    var geturl;	
	geturl = vurl; 
    var winOptions = 'scrollbars=yes,resizable=yes,fullscreen=no,channel mode=no,status=no,toolbar=no,menubar=no,location=n o,directories=no,height=500,width=922';
    var target = '_blank';
    var fRet;
    
	var oWin = window.open(geturl,target,winOptions);
	//alert(oWin);
	if (oWin==null || typeof(oWin)=='undefined')
	{			
			//alert("true");
			location = geturl;
			return true;		               
	}
	else
	{
				
	}
		   
}
