The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html; charset=iso-8859-1"/>
<link rel="stylesheet" href="/NASApp/NetAccessXX/olbweb/uk/en/common/dynamicCommon.css" type="text/css"/>
<link rel="stylesheet" href="/NASApp/NetAccessXX/olbweb/uk/en/mbnaeire/mbna.css" type="text/css"/>
<link rel="stylesheet" href="/NASApp/NetAccessXX/olbweb/uk/en/common/jquery_css/jquery-ui-1.8.custom.css" type="text/css"/>
<script language="JavaScript" type="text/javascript">
				/*<![CDATA[*/
				window.name = "netAccessMain";

				
				try
				{
  					document.execCommand('BackgroundImageCache', false, true);
				} catch(e) {}

				    
                function topFrame(){
                   if (top != self) {top.location=self.location;}
               }
				/*]]>*/</script>
<script language="JavaScript" type="text/javascript">

				function RTeKnowledge(url)
				{
					winHeight = 760;
					winWidth = 640;
					winTop = (screen.height/2) - (winHeight/2)
					winLeft = (screen.width/2) - (winWidth/2)
					features = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height=' + winHeight + ',width=' + winWidth + ',top=' + winTop+',left=' + winLeft;
					myWindow = window.open('https://' + url , 'eKnowledge', features);
				}

				</script>
<script language="javascript" type="text/javascript" src="/NASApp/NetAccessXX/olbweb/uk/en/mbna/js/jquery-1.4.2.min.js">
<!---->
</script>
<script language="javascript" type="text/javascript" src="/NASApp/NetAccessXX/olbweb/uk/en/mbna/js/jquery-ui-1.8.custom.dialog.min.js">
<!---->
</script>
<script language="javascript" type="text/javascript" src="/NASApp/NetAccessXX/olbweb/uk/en/mbna/js/jquery-zoom-plugin.js">
<!---->
</script>
<script language="javascript" type="text/javascript" src="/NASApp/NetAccessXX/olbweb/uk/en/mbna/js/swfobject.js">
<!---->
</script>
<script language="javascript" type="text/javascript" src="/NASApp/NetAccessXX/olbweb/uk/en/mbna/js/inlineContextualHelp.js">
<!---->
</script>
<script type="text/javascript" language="JavaScript" src="/NASApp/NetAccessXX/olbweb/uk/en/mbna/js/dob.js">/**/</script>
<script type="text/javascript" language="javascript">
	    /*<![CDATA[*/
	    
	    var timeoutPopupTimer;
	    var expiredTimeoutPopupTimer;

	    jQuery.noConflict();
	    jQuery(document).ready(function($) {
				timeoutPopupTimer = setTimeout('showTimeoutPopup()', 300000);
	    });

	    function showTimeoutPopup() {
				clearTimeout(timeoutPopupTimer);
				jQuery('#timeoutPopup')
					.dialog({
					draggable:false,
					resizable:false,
					width: 335,
					closeText:'',
					title:'',
					modal: true
					})
					.dialog('moveToTop');
					jQuery('#timeoutPopup').parent().find('.ui-dialog-titlebar').hide();
                                        jQuery('#timeoutPopup').dialog('moveToTop');

					expiredTimeoutPopupTimer = setTimeout('showExpiredTimeoutPopup()', 300000);

                    document.location.hash = "#timeoutPopup";
			}

	    function showExpiredTimeoutPopup() {
				clearTimeout(expiredTimeoutPopupTimer); //changed by Paul (only added this comment) - this line of code seems to be useless why clear the timer that when it expired actually
																								//		called this function, at this point both timers should have been actually triggered and therefore both should be stopped by now.

				jQuery('#timeoutPopup').dialog('close');

				jQuery('#expiredTimeoutPopup')
						.dialog({
						draggable:false,
						resizable:false,
						width: 335,
						closeText:'',
						title:'',
						modal: true
						})
						.dialog('moveToTop');
				jQuery('#expiredTimeoutPopup').parent().find('.ui-dialog-titlebar').hide();
				jQuery('#expiredTimeoutPopup').dialog('moveToTop');

                document.location.hash = "#expiredTimeoutPopup";
	    }

	    function hideTimeoutPopup() {
				clearTimeout(expiredTimeoutPopupTimer);
				jQuery('#timeoutPopup').dialog('close');
	    }

	    function hideExpiredTimeoutPopup() {
				jQuery('#expiredTimeoutPopup').dialog('close');
	    }

	    function getMoreTimeUntilNextTimeout() {
				jQuery.ajax({
						url: "SessionExtenderServlet",
						cache: false,
						success: resetTimoutPopupTimer,
						error: showTimeoutServerCommunicationError});
				jQuery('#timeoutPopup').dialog('close');
				jQuery('body').focus();
	    }

	    function resetTimoutPopupTimer() {
				clearTimeout(timeoutPopupTimer); //should also clear the expiredTimeoutPopupTimer because if that has been triggered it will still show up
				clearTimeout(expiredTimeoutPopupTimer); //added by Paul - original code did not clear he second timeout (it gets initialized when the first popup fires and if not cleared it still shows up after you click on Continue to prolong your session)
				timeoutPopupTimer = setTimeout('showTimeoutPopup()', 300000);
	    }

	    function showTimeoutServerCommunicationError() {
				alert("Server timeout!");
	    }
	    
	    /*]]>*/</script>
<script type="text/javascript" language="javascript">
	    /*<![CDATA[*/
	    

	    jQuery.noConflict();
	    jQuery(document).ready(function($) {
		changeCancel();
	    });

            function changeCancel() {
                var buttonHTML;
                var newButtonHTML = '<span class="bodyText">'+
                                        '<a href="javascript:void(0);" onclick="cancelConfirmationPopup();">'+
                                            'Cancel'+
                                        '</a>'+
                                    '</span>';

                
                buttonHTML = jQuery('#cancelChange');
                jQuery('SCRIPT',buttonHTML).remove();
                jQuery('NOSCRIPT',buttonHTML).remove();
                buttonHTML = jQuery('#cancelChange').html();

                jQuery('#cancel').html(newButtonHTML);
                jQuery('#cancelConfirmationButtonPlaceholder').html(buttonHTML);
                jQuery('#cancelConfirmationButtonPlaceholder .styledButtonRight').html(jQuery('#newCancelButtonText').html());
            }

	    function cancelConfirmationPopup() {
				jQuery('#cancelConfirmationPopup')
					.dialog({
					draggable:false,
					resizable:false,
					width: 500,
					closeText:'',
					title:'',
					modal: true
					})
					.dialog('moveToTop');
					jQuery('.ui-dialog-titlebar').hide();
					jQuery('#cancelConfirmationPopup').dialog('moveToTop');
			}


	    function hideCancelConfirmationPopup() {
				jQuery('#cancelConfirmationPopup').dialog('close');
	    }


	    
	    /*]]>*/</script>
				<!--[if IE 6]>
			
<script type="text/javascript" language="javascript">document.ie6pngFixBlankImageUrl = '/NASApp/NetAccessXX/olbweb/uk/en//common/blank1x1.gif';</script>
<script type="text/javascript" language="JavaScript" src="/NASApp/NetAccessXX/olbweb/uk/en//common/iepngfix_tilebg.js">/**/</script>
<script type="text/javascript" language="JavaScript" src="/NASApp/NetAccessXX/olbweb/uk/en//common/iepngfix.js">/**/</script>
				<![endif]-->
			
<title>Manage Account - Summary - MBNA Online Card Services</title>
</head>
<body xmlns="">
			<!--[if IE]>
                <div id="browserIe">
			<![endif]-->

            <!--[if IE 6]>
                <div id="browserIe6">
			<![endif]-->

            <!--[if IE 7]>
                <div id="browserIe7">
			<![endif]-->

            <!--[if IE 8]>
                <div id="browserIe8">
			<![endif]-->
        
<a xmlns="http://www.w3.org/1999/xhtml" name="top">
<!-- -->
</a>
<div class="auralText"> 
					To protect your Online Card Services account, if your computer is inactive for more than 10 minutes your session will expire.
			</div>
<a xmlns="http://www.w3.org/1999/xhtml" href="#level1header" title="Jump to main header" class="auralText"> Jump to main content</a>
<div id="brandingHeader">
<!---->
</div>
<div id="wrapper" style="width:756px;">
<div xmlns="http://www.w3.org/1999/xhtml" id="header" style="width:756px;">
<div id="topMenu">
<ul>
<li style="width:11em;">
<a target="_top" href="SecureMessageScreen?key=received" class="">
<span style="float:right;display:block;cursor:pointer;">Messages</span>
<span class="styledButtonMini" style="float:right;cursor:pointer;">
<img src="/NASApp/NetAccessXX/olbweb/uk/en//common/mail-icon.gif" alt=""/>
<span class="divClear" style="display:block;">
<!-- -->
</span>
</span>
</a>
</li>
<li>
<img src="/NASApp/NetAccessXX/olbweb/uk/en//mbnaeire/images/global-menu-separator.gif" alt="" class="sep"/>
</li>
<li>
<a href="InfoScreen?key=handslanding&amp;acctID=YTNCZD" id="helpSupportLinkID">Help &amp; support</a>
</li>
<li>
<img src="/NASApp/NetAccessXX/olbweb/uk/en//mbnaeire/images/global-menu-separator.gif" alt="" class="sep"/>
</li>
<li>
<a href="InfoScreen?key=contacts&amp;acctID=YTNCZD">Contact Us</a>
</li>
<li>
<a target="_top" href="LogoutScreen?acctID=YTNCZD" class="styledButton" style="float:right" id="logOffButton">Log Off<div class="divClear">
<!-- -->
</div>
</a>
<div class="divClear">
<!-- -->
</div>
</li>
</ul>
<div class="divClear">
<!-- -->
</div>
</div>
<div id="brandingLogoContainer">
<div style="width:139px;height:91px;float:left;overflow:hidden;">
<a href="http://www.mbna.ie" target="_blank">
<img border="0" alt="MBNA" src="/NASApp/NetAccessXX/olbweb/uk/en/mbna/images/mbna_logo.png" style="position:absolute;width:139px;height:91px;"/>
<span class="auralText"> Opens new window</span>
</a>
</div>
<div class="divClear">
<!-- -->
</div>
</div>
<div class="divClear">
<!-- -->
</div>
<div class="headerTextLine loggedInPersonNameTop">
<div class="loggedInPersonData bodyTextNoSpace loggedInPersonName ">
<strong>
                                                Hello
                                                Mr Luke Skywalker</strong>
</div>
<div class="cardData bodyTextNoSpace">
<strong>MBNA Gold Card<br/>XXXX XXXX XXXX 4321<!----></strong>
</div>
<div class="divClear">
<!-- -->
</div>
</div>
<div class="divClear">
<!-- -->
</div>
<div class="cardButtons">
<a href="RegisteredAccountsScreen" class="styledButton" style="float:left;">
        Cards overview
    </a>
<a href="RegisterAccountScreen" class="styledButton" style="float:left;">
        Add card
    </a>
<div class="divClear">
<!-- -->
</div>
</div>
<div class="divClear">
<!-- -->
</div>
<div id="mainNavigation">
<ul>
<li class="longerTab">
<a href="AccountSnapshotScreen?acctID=YTNCZD" title="" id="activeMainNavigation">
<span class="left">
<!---->
</span>
<span class="right">
<!---->
</span>
<span class="center">Your Account</span>
</a>
</li>
<li class="shorterTab">
<a href="LandingPageScreen?key=protectionAndServicesLanding&amp;acctID=YTNCZD" title="">
<span class="left">
<!---->
</span>
<span class="right">
<!---->
</span>
<span class="center">
<span class="protectionTabText">Products &amp; Services</span>
</span>
</a>
</li>
<li class="longerTab">
<a href="LandingPageScreen?key=onboardinglanding&amp;acctID=YTNCZD" title="">
<span class="left">
<!---->
</span>
<span class="right">
<!---->
</span>
<span class="center">Tools &amp; Resources</span>
</a>
</li>
</ul>
<div class="divClear">
<!-- -->
</div>
</div>
<div id="secondaryNavigation">
<ul>
<li>
<a href="RecentStatementsScreen?acctID=YTNCZD&amp;originCode=1" title="">
<span>Statements</span>
</a>
</li>
<li>
<img src="/NASApp/NetAccessXX/olbweb/uk/en//mbnaeire/images/local-menu-separator.gif" alt="" class="sep"/>
</li>
<li>
<a href="PaymentScreen?acctID=YTNCZD&amp;originCode=1" title="">
<span>Make a Payment</span>
</a>
</li>
<li>
<img src="/NASApp/NetAccessXX/olbweb/uk/en//mbnaeire/images/local-menu-separator.gif" alt="" class="sep"/>
</li>
<li>
<a href="TransferBalancesScreen?acctID=YTNCZD&amp;originCode=1" title="">
<span>Make a Transfer</span>
</a>
</li>
<li>
<img src="/NASApp/NetAccessXX/olbweb/uk/en//mbnaeire/images/local-menu-separator.gif" alt="" class="sep"/>
</li>
<li>
<a href="CSCScreen?acctID=YTNCZD&amp;originCode=1" title="">
<span>Manage Account</span>
</a>
</li>
<li>
<img src="/NASApp/NetAccessXX/olbweb/uk/en//mbnaeire/images/local-menu-separator.gif" alt="" class="sep"/>
</li>
<li>
<a href="LandingPageScreen?key=benefitslanding&amp;acctID=YTNCZD&amp;originCode=1" title="">
<span>Card Benefits</span>
</a>
</li>
</ul>
<div class="divClear">
<!-- -->
</div>
</div>
</div>
<div xmlns="http://www.w3.org/1999/xhtml" id="content" class="">
<a name="level1header">
<!-- -->
</a>
<div class="pageContent accountArea">
<h1 class="auralText">Manage Account - Summary</h1>
<div id="cardBox" class="roundedBox">
<div class="roundedBoxTop">
<div class="roundedBoxTopLeft">
<!---->
</div>
<div class="roundedBoxTopRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="roundedBoxBody">
<div style="width:99.9%">
<div id="accountName" class="column12">MBNA Gold Card<!----></div>
<div class="column3">
<!---->
<!---->
</div>
<div class="divClear">
<!---->
</div>
<div class="floatLeft indentLeftNarrow">
<p>
<span class="creditCardInfoBold">
    Credit card XXXX XXXX XXXX 4321</span>
<a href="MyPromotionsScreen?acctID=YTNCZD">
    View Promotional Offers
</a>
</p>
</div>
<div class="divClear">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
</div>
<div class="roundedBoxBottom">
<div class="roundedBoxBottomLeft">
<!---->
</div>
<div class="roundedBoxBottomRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
</div>
<div id="accountSummary">
<div class="column12 topLine">
<div class="column1 boxText">Your Outstanding Balance<div style="font-weight:normal;">as of 27 February 2011 18:12</div>
</div>
<div class="column2 boxText">&#8364;77.39CR<br/>
<a href="AccountRefresh?acctID=YTNCZD">Refresh Balance</a>
</div>
</div>
<div class="column3">
<a href="TransferBalancesScreen?acctID=YTNCZD" target="" id="" class="buttonStyledLink right">
<span class="styledButtonDynamicWidth">
<span class="styledButtonRight">
<span class="auralText">
<!---->
</span>Transfer a Balance<span class="auralText">
<!---->
</span>
</span>
</span>
</a>
</div>
<div class="column12">
<div class="column1 boxText">Previous Outstanding Balance<span>
         <a href="#inlineContextualHelp" class="inlineContextualHelp" style="outline: 0;">
<span class="auralText">click for definition</span>
</a>
<img src="/NASApp/NetAccessXX/olbweb/uk/en/common/btn-help.gif" title="&#10;&#9;&#9;&#9;Your Previous Outstanding Balance is the amount of credit pending repayment&#10;&#9;&#9;&#9;as of your last statement date. Your Current Outstanding balance is the total&#10;&#9;&#9;&#9;of this balance, plus any new charges made or interest/fees charged during &#10;&#9;&#9;&#9;your next statement month, but less any payments received.&#10;&#10;" alt="&#10;&#9;&#9;&#9;Your Previous Outstanding Balance is the amount of credit pending repayment&#10;&#9;&#9;&#9;as of your last statement date. Your Current Outstanding balance is the total&#10;&#9;&#9;&#9;of this balance, plus any new charges made or interest/fees charged during &#10;&#9;&#9;&#9;your next statement month, but less any payments received.&#10;&#10;" class="inlineContextualHelp" id="inlineContextualHelp"/>
</span>
</div>
<div class="column2 boxText">&#8364;76.39CR</div>
</div>
<div class="column3">
<!---->
</div>
<div class="divClear">
<!---->
</div>
<div class="column12 bottomLine">
<div class="column1 boxText">
                (Pending transactions)
		<span>
         <a href="#inlineContextualHelp" class="inlineContextualHelp" style="outline: 0;">
<span class="auralText">click for definition</span>
</a>
<img src="/NASApp/NetAccessXX/olbweb/uk/en/common/btn-help.gif" title="&#10;&#9;&#9;&#9;Pending Transactions are transactions that have not yet been processed,&#10;&#9;&#9;&#9;but for which funds from your credit limit have been set aside to cover.&#10;&#9;&#9;&#9;When the transaction is approved, the pending amount is replaced by an&#10;&#9;&#9;&#9;actual charge. If the pending transaction is cancelled, it is removed&#10;&#9;&#9;&#9;from your account approximately 14 days after it was authorised.&#10;" alt="&#10;&#9;&#9;&#9;Pending Transactions are transactions that have not yet been processed,&#10;&#9;&#9;&#9;but for which funds from your credit limit have been set aside to cover.&#10;&#9;&#9;&#9;When the transaction is approved, the pending amount is replaced by an&#10;&#9;&#9;&#9;actual charge. If the pending transaction is cancelled, it is removed&#10;&#9;&#9;&#9;from your account approximately 14 days after it was authorised.&#10;" class="inlineContextualHelp" id="inlineContextualHelp"/>
</span>
</div>
<div class="column2 boxText">
            	(&#8364;0.00)            
            </div>
</div>
<div class="column3 bottomLine">
<p> <a href="#transactionsArea">View recent activity</a>
</p>
</div>
<div class="divClear">
<!---->
</div>
<div class="column12 topLine">
<div class="column1 boxText">Total Minimum Payment Due</div>
<div class="column2 boxText">&#8364;0.00</div>
</div>
<div class="column3">
<a href="PaymentScreen?acctID=YTNCZD" target="" id="" class="buttonStyledLink right">
<span class="styledButtonDynamicWidth">
<span class="styledButtonRight">
<span class="auralText">
<!---->
</span>Make a Payment<span class="auralText">
<!---->
</span>
</span>
</span>
</a>
</div>
<div class="column12 bottomLine">
<div class="column1 boxText">Payment to be received by</div>
<div class="column2 boxText">17 Mar 2011</div>
</div>
<div class="column3 bottomLine">
<!---->
</div>
<div class="divClear">
<!---->
</div>
<div class="column12 bottomLine">
<div class="column1 boxText">Last Payment Received</div>
<div class="column2 boxText">&#8364;2,200.00
                    on
                    07/02/2011</div>
</div>
<div class="column3 bottomLine">
<!---->
</div>
<div class="divClear">
<!---->
</div>
<div class="column12 topLine">
<div class="column1 boxText">Available for Cash &amp; Purchases</div>
<div class="column2 boxText">&#8364;8,076.39</div>
</div>
<div class="column3"> </div>
<div class="column12 bottomLine">
<div class="column1 boxText">Credit Limit</div>
<div class="column2 boxText">&#8364;8,000.00</div>
</div>
<div class="column3 bottomLine">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="divClear">
<!---->
</div>
<div style="float:left;width:49%;">
<div class="roundedBox headlineStyledHeader" id="helpAndSupport" style="&#10;                    width:245px;&#10;                ">
<div class="roundedBoxTop">
<div class="roundedBoxTopLeft">
<!---->
</div>
<div class="roundedBoxTopRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="roundedBoxBody">
<div style="width:99.9%">
<!---->
<div>
<h2 style="float:left;">
<span style="height:1.4em;display:block;width:1px;float:left;overflow:hidden;">
                         
                    </span>Help and support</h2>
<div class="divClear">
<!---->
</div>
<hr/>
<br/>
<div class="divClear">
<!---->
</div>
<div>
<div style="height:4.5em;width:1px;float:left;overflow:hidden;">
                         
                    </div>
<div style="zoom:1;">
<p>
<a href="InfoScreen?key=qanda&amp;acctID=YTNCZD#security">Online security</a>
<br/>
<a href="InfoScreen?key=contacts&amp;acctID=YTNCZD#billingEnDisp">Bill Enquiries</a>
<br/>
<a href="InfoScreen?key=glossary&amp;acctID=YTNCZD#mobileBanking">Mobile Services</a>
<br/>
</p>
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="divClear">
<!---->
</div>
</div>
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="roundedBoxBottom">
<div class="roundedBoxBottomLeft">
<!---->
</div>
<div class="roundedBoxBottomRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
</div>
<!---->
</div>
<div style="float:right;width:49%;">
<div class="roundedBox headlineStyledHeader" style="&#10;                    width:245px;&#10;                ">
<div class="roundedBoxTop">
<div class="roundedBoxTopLeft">
<!---->
</div>
<div class="roundedBoxTopRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="roundedBoxBody">
<div style="width:99.9%">
<!---->
<div>
<h2 style="float:left;">
<span style="height:1.4em;display:block;width:1px;float:left;overflow:hidden;">
                         
                    </span>See also ...</h2>
<div class="divClear">
<!---->
</div>
<hr/>
<br/>
<div class="divClear">
<!---->
</div>
<div>
<div style="height:4.5em;width:1px;float:left;overflow:hidden;">
                         
                    </div>
<div style="zoom:1;">
<p>
<!---->
<a href="PaymentScreen?acctID=YTNCZD&amp;originCode=1">
                Direct Debits
            </a>
<br/>
<a href="LandingPageScreen?key=mobileservices&amp;acctID=YTNCZD">
            Mobile Services
        </a>
<br/>
<a href="CurrentRatesScreen?acctID=YTNCZD">View Rates</a>
</p>
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="divClear">
<!---->
</div>
</div>
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="roundedBoxBottom">
<div class="roundedBoxBottomLeft">
<!---->
</div>
<div class="roundedBoxBottomRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
</div>
</div>
<div class="divClear">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="messageArea">
<div class="roundedBox " style="&#10;                    width:242px;&#10;                ">
<div class="roundedBoxTop">
<div class="roundedBoxTopLeft">
<!---->
</div>
<div class="roundedBoxTopRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="roundedBoxBody">
<div style="width:99.9%">
<!---->
<!--32-OLB-IEA-E-11112|-->
<div id="nbaImage">
<img src="DigitalAsset?assetNumber=528" title="Your email address is invalid update it now" alt="Your email address is invalid update it now"/>
<!---->
</div>
<div id="nbaText">
<!---->
</div>
<div id="nbaLinks">
<p>
<a title="Update details" href="DispositionServlet?nbaId=1&amp;dispositionCode=64&amp;url=UpdateProfileScreen&amp;acctID=YTNCZD&amp;refreshServlet=AccountSnapshotScreen">Update details</a>
          
      <!----></p>
</div>
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="roundedBoxBottom">
<div class="roundedBoxBottomLeft">
<!---->
</div>
<div class="roundedBoxBottomRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
</div>
<div class="roundedBox ">
<div class="roundedBoxTop">
<div class="roundedBoxTopLeft">
<!---->
</div>
<div class="roundedBoxTopRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="roundedBoxBody">
<div style="width:99.9%">
<!---->
<h2>Promotions</h2>
<hr/>
<div class="bodyText">
<div class="sidebarLeftContent">
<img src="/NASApp/NetAccessXX/olbweb/uk/en/common/etm.png" alt="To enquire about a new promotional rate on balance transfers, call 0818 409 511."/>
</div>
<div class="sidebarRightContent">
<a target="_top" href="MyPromotionsScreen?acctID=YTNCZD&amp;originCode=" class="promoAreaLink">To enquire about a new promotional rate on balance transfers, call 0818 409 511</a>
</div>
<div class="divClear">
<!-- -->
</div>
<br/>
<div class="sidebarLeftContent"> </div>
<div class="sidebarRightContent">
<a target="_top" href="MyPromotionsScreen?acctID=YTNCZD&amp;originCode=" class="promoAreaLink">View All Promotions</a>
</div>
<div class="divClear">
<!-- -->
</div>
<br/>
<!---->
</div>
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="roundedBoxBottom">
<div class="roundedBoxBottomLeft">
<!---->
</div>
<div class="roundedBoxBottomRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
</div>
<div class="roundedBox ">
<div class="roundedBoxTop">
<div class="roundedBoxTopLeft">
<!---->
</div>
<div class="roundedBoxTopRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="roundedBoxBody">
<div style="width:99.9%">
<!---->
<div class="bodyText">
<div style="clear:both;">
<div class="marketingLinkArea">
<a class="marketingLink" href="MarketingMessageProcess?acctID=YTNCZD&amp;id=585&amp;url=LandingPageScreen%3Fkey%3Donboardinglanding%26acctID%3DYTNCZD">
							  
							 
							</a>
</div>
<a href="MarketingMessageProcess?acctID=YTNCZD&amp;id=585&amp;url=LandingPageScreen%3Fkey%3Donboardinglanding%26acctID%3DYTNCZD">
<img border="0" alt="Manage your account easliy" src="DigitalAsset?assetNumber=402" class="marketingImage"/>
</a>
</div>
<!---->
</div>
</div>
<div class="divClear">
<!---->
</div>
</div>
<div class="roundedBoxBottom">
<div class="roundedBoxBottomLeft">
<!---->
</div>
<div class="roundedBoxBottomRight">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
</div>
<!---->
</div>
<div class="divClear">
<!---->
</div>
<div id="transactionsArea">
<script type="text/javascript" language="JavaScript">

        function txnShowDetails(elem) {
          jQuery("#" + elem.id).parentsUntil(".txnBody").last().find(".details").css("display", "");
          elem.style.display = "none";
          jQuery("#" + elem.id.replace(/Show/, "Hide")).css("display", "");
        }
        function txnHideDetails(elem) {
          jQuery("#" + elem.id).parentsUntil(".txnBody").last().find(".details").css("display", "none");
          elem.style.display = "none";
          jQuery("#" + elem.id.replace(/Hide/, "Show")).css("display", "");
        }
    </script>
<div id="transactionsAreaHeader">
<div class="leftCorner">
<!--top left corner-->
</div>
<h2 class="heading">Recent Activity</h2>
<div class="action1">
<a href="RecentStatementsScreen?acctID=YTNCZD">View Statements</a>
</div>
<div class="rightCorner">
<!--top right corner-->
</div>
<div class="divClear">
<!---->
</div>
</div>
<div style="clear: both" class="txnTable">
<div class="bodyText" style="margin: 0; padding: 4px 0 4px 5px;">No transactions recorded.</div>
<div style="clear: both" class="txnFoot">
<!---->
</div>
</div>
</div>
<div class="divClear">
<!---->
</div>
<div class="divClear">
<!---->
</div>
</div>
<div xmlns="http://www.w3.org/1999/xhtml" class="divClear">
<!-- -->
</div>
<div id="footer">
<div id="footerLeft">
<p>© 2011 MBNA Europe Bank Limited</p>
</div>
<div id="footerRight">
<ul>
<li>
<a href="AccessibilityScreen?acctID=YTNCZD" class="footer">Accessibility</a>
</li>
<li>
<img src="/NASApp/NetAccessXX/olbweb/uk/en//mbnaeire/images/footer-separator.gif" alt="" class="sep"/>
</li>
<li>
<a href="InfoScreen?key=terms&amp;acctID=YTNCZD" class="footer">Terms of Use</a>
</li>
<li>
<img src="/NASApp/NetAccessXX/olbweb/uk/en//mbnaeire/images/footer-separator.gif" alt="" class="sep"/>
</li>
<li>
<a href="InfoScreen?key=privacy&amp;acctID=YTNCZD" class="footer">Privacy</a>
</li>
</ul>
</div>
<div class="divClear">
<!-- -->
</div>
</div>
</div>
<div style="display:none;">
<div id="timeoutPopup">
<p class="headline">We noticed you haven't been actively using our web site for a few minutes.</p>
<p>
	    To protect your account, if our Online Card Services is inactive for more than 10 minutes your session will expire. If you need more time, just click "Yes, Continue" below.
	</p>
<div style="float:left;">
<a href="LogoutScreen?acctID=YTNCZD" target="" id="" class="buttonStyledLink right">
<span class="styledButtonDynamicWidth">
<span class="styledButtonRight">
<span class="auralText">Logout<!----></span>No, LogOut<span class="auralText">
<!---->
</span>
</span>
</span>
</a>
</div>
<div style="float:right;">
<a href="#" target="" id="" class="buttonStyledLink right" onclick="getMoreTimeUntilNextTimeout();">
<span class="styledButtonDynamicWidth">
<span class="styledButtonRight">
<span class="auralText">Get more time<!----></span>Yes, Continue<span class="auralText">
<!---->
</span>
</span>
</span>
</a>
</div>
<div class="divClear">
<!-- -->
</div>
</div>
</div>
<div style="display:none;">
<div id="expiredTimeoutPopup">
<p class="headline">We're sorry. Your session was inactive for more than 10 minutes.
	    <br/>To protect your account information your session has ended.</p>
<p>
	    For security purposes, you'll need to login again.
	</p>
<div style="text-align:center;">
<a href="LogoutScreen?acctID=YTNCZD" target="" id="" class="buttonStyledLink right" onclick="hideExpiredTimeoutPopup();">
<span class="styledButtonDynamicWidth">
<span class="styledButtonRight">
<span class="auralText">Confirm session expiration<!----></span>Ok<span class="auralText">
<!---->
</span>
</span>
</span>
</a>
</div>
</div>
</div>
<div style="display:none;">
<div id="cancelConfirmationPopup" style="text-align: left;">
<div class="headline">Are you sure you want to cancel now?</div>
<p>
                        If you cancel the registration process now you'll lose
                        the SiteKey information you've already entered, however
                        you'll still be able to login to Online Card Services
                        with the username and password you've created.
                </p>
<p>
                        Please remember the next time you login you'll be
                        required to complete the registration process.
                </p>
<div style="float:right;">
<a href="javascript:hideCancelConfirmationPopup();" target="" id="" class="buttonStyledLink left">
<span class="styledButtonDynamicWidth">
<span class="styledButtonRight">
<span class="auralText">
<!---->
</span>I want to continue<span class="auralText">
<!---->
</span>
</span>
</span>
</a>
</div>
<div style="float:left;" id="cancelConfirmationButtonPlaceholder">
<!---->
</div>
<div style="display: none" id="newCancelButtonText">I want to cancel</div>
<div class="divClear">
<!---->
</div>
</div>
</div>
			<!--[if IE]>
                    </div>
                </div>
			<![endif]-->
        
<input type="hidden" name="analyticPageName" id="analyticPageName" value="AccountSnapshotScreen"/>
<input type="hidden" name="analyticBrand" id="analyticBrand" value="mbna"/>
<input type="hidden" name="analyticAffinity" id="analyticAffinity" value="mbna"/>
<input type="hidden" name="analyticKey" id="analyticKey" value="0f48c5c4342159a120dd6d598032160ce60e9fc8"/>
<input type="hidden" name="analyticProdAcctNo" id="analyticProdAcctNo" value="160009755"/>
<input type="hidden" name="analyticSequenceNo" id="analyticSequenceNo" value="1"/>
<input type="hidden" name="analyticRoleType" id="analyticRoleType" value="1"/>
<SCRIPT language="JavaScript">var mbnaesPageID = ''; mbnaesPageID += 'AccountSnapshotScreen';</SCRIPT>
<script language="JavaScript" type="text/javascript" src="/NASApp/NetAccessXX/olbweb/uk/en/mbna/js/sasAnalytics/SpeedTrapInsert.js">
<!---->
</script>
</body>
</html>