var winModalWindow
 
function IgnoreEvents(e)
{
  return false;
}

function HandleFocus()
{
 winModalWindow.focus();
  if (winModalWindow)
  {
  //alert('s');
    if (!winModalWindow.closed)
    {
      winModalWindow.focus();
    }
    else
    {
      window.top.releaseEvents (Event.CLICK|Event.FOCUS)
      window.top.onclick = ""
    }
  }
  return false;
}

function XXX()
{
HandleFocus();
}

function ShowSaveCreditCard()
{
popDialogWindow("app/popup/CreditCardSave.aspx", "300px", "200px");
 return false;
}

function popDialogWindow(page, width, height)
{
  if (window.showModalDialog)
  {
    var w = window.showModalDialog(page,window, "scroll:yes;dialogWidth=" + width + ";dialogHeight=" + height + "", 0)
    //window.open (page,"ModalChild", "dependent=yes,width=" + width + ",height=" + height + "")
    return w;
  }
  else
  { 
  
    window.top.captureEvents (Event.CLICK|Event.FOCUS)
    window.top.onclick=IgnoreEvents;
    window.top.onfocus=HandleFocus;
    winModalWindow = window.open (page,"ModalChild", "scrollbars=yes,dependent=yes,width=" + width + ",height=" + height + "");
    winModalWindow.focus();
  }
}


function popWindow(page, width, height)
{
  window.open (page,"ModalChild", "scrollbars=yes,dependent=yes,width=" + width + ",height=" + height + "")
}


