
// popup div function, modified 2/25/08

function ccPopup() {
  var ccpop = document.getElementById("cvv2");
  var gotop = document.getElementById("top");
  if(gotop) gotop.focus();
  //window.location.hash="#top";
  ccpop.style.visibility="visible";
  ccpop.style.display="";
}

function ccClose() {
  var ccpop = document.getElementById("cvv2");
  //window.location.hash="";
  ccpop.style.visibility="hidden";
  ccpop.style.display="none";
}