
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
			{
				        
			}
	//	}
    
}

