function popupwindowsize(url, name) {
  popupWin = window.open(url, name, 'menubar,scrollbars,width=659,height=480')
}

function popupwindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function confirmMessage(url) {
  answer = confirm("Please be patient. Third-party sites may require extended loading time. MilitaryFamilyLink provides links, as a courtesy only, and does not manage any third-party technology or connectivity.");
            
     if (answer)
      {
        partnerWindow = window.open(url, "myWindow", "width=800,height=600,menubar=1,resizable=1,status=1,scrollbars=1");
      }
}

function targetBlank (url) {
  blankWin = window.open(url,'_blank','menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
}
