﻿
function AmsPrint() {

 var re = window.location.href;

 if(document.URL.indexOf("glossary") > 1 || document.URL.indexOf("frequently-asked-questions") > 1) {
   toggleAllOn();
 }
 
 window.print();
   
 if(document.URL.indexOf("glossary") > 1) {
    document.location = "/find-and-learn/glossary/index.html";
  } else if(document.URL.indexOf("frequently-asked-questions") > 1) {
    document.location = "/find-and-learn/frequently-asked-questions/index.html";
  } else {
  document.location = window.location.href;
 }

}


