var section508Mode;

// Check for 508 mode
function is508Mode() {
   if (window.location.search.toUpperCase().indexOf("USE508") != -1) {
       if (window.location.search.toUpperCase().indexOf("USE508=1") != -1) {
           this.LMS508on = true;
		   section508Mode = "true";
       } else {
           this.LMS508off = true;
		   section508Mode = "false";
       }
   } else {
       this.LMS508off = true;
	   section508Mode = "false";
   }
}