


$$('.displayPopUp').each(function(element) {

    element.observe('click', valueChanged);
	
})

$$('.cdd1_sub_items').each(function(element) {

  
  if ($(element).href == "https://online.americanexpress.com/myca/logon/us/action?request_type=LogonHandler&Face=en_US&DestPage=https%3A%2F%2Fonline.americanexpress.com%2Fmyca%2Facctsumm%2Fus%2Faction%3Frequest_type%3Dauthreg_acctAccountSummary%26Face%3Den_US" || $(element).href == "https://online.americanexpress.com/myca/logon/us/action?request_type=LogonHandler&Face=en_US&DestPage=https%3A%2F%2Fonline.americanexpress.com%2Fmyca%2Facctsumm%2Fus%2Faction%3Frequest_type%3Dauthreg_acctAccountSummary%26Face%3Den_US"){
		
		element.observe('click', valueChanged);
		
  }
	
})


//Event.observe($("displayPopUp"),"click",valueChanged);
//Event.observe($("layerBtn"),"click",valueChanged);
Event.observe($("continuebtnLayer"),"focus",findFocusLayer);



function findFocusLayer(event){
	//alert("Inside Focus "+Event.element(event).id);
	if(Event.element(event).id == "heading")
      $("closeLayer").focus();
    else
      $("headingLayer").focus();
}


function valueChanged(event){
				//alert(this.readAttribute('href'));
				currLink=this.readAttribute('href');
				Event.stop(event);
				$("semiBlackpopUp2").tabIndex = 0;
				$("semiBlackpopUp2").style.display="block";
				$("boxOverSemiBlackpopUp2").tabIndex = 0;
				$("boxOverSemiBlackpopUp2").style.display="block";
				$("popup_textpopUp2").tabIndex = 0;
				$("popup_textpopUp2").style.display="block";
				document.body.style.overflowY= "hidden";
				$("headingLayer").tabIndex = 0;
				$("headingLayer").focus();

		
		

}


function hidePopupLayer(){
document.getElementById("semiBlackpopUp2").removeAttribute("tabIndex");
document.getElementById("semiBlackpopUp2").style.display="none";
document.getElementById("boxOverSemiBlackpopUp2").removeAttribute("tabIndex");
document.getElementById("boxOverSemiBlackpopUp2").style.display="none";
document.getElementById("popup_textpopUp2").removeAttribute("tabIndex");
document.getElementById("popup_textpopUp2").style.display="none";
document.getElementById("headingLayer").removeAttribute("tabIndex");
document.getElementById("popup_contentLayer").removeAttribute("tabIndex");
document.body.style.overflowY= "scroll";



//$$('td.footertext')[0].focus();

}


/*function Popup(){
document.getElementById("semiBlackpopUp2").style.display="block";
document.getElementById("boxOverSemiBlackpopUp2").style.display="block";
document.getElementById("popup_textpopUp2").style.display="block";
document.body.style.overflowY= "hidden";
}*/

function continueLayer(){
	if(currLink=="popup.shtml"){
		popup('popup.shtml?URL=https://www134.americanexpress.com/travelfhr/PlatCCSGServlet?request_type=pcfdfinder');
	}else{
		document.location.href=currLink;
	}
}

