// GLOBAL JAVASCRIPT FUNCTIONS //

function disclaimer_popup() {
         window.open('disclaimer.htm','disclaimer','toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=no,copyhistory=no,scrollbars=yes,width=400,height=400');
}

function mission_popup() {
         window.open('mission.htm','mission','toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=no,copyhistory=no,scrollbars=yes,width=400,height=400');
}

function link_pop(url) {
         remote = window.open(url,'link_popup', 'toolbar=yes,location=no,directories=no,status=yes,menubar=yes,resizable=yes,copyhistory=no,scrollbars=yes,width=600,height=275,left=166,screenX=166,top=170,screenY=170');
         if (window.focus) {
             remote.focus();
         }
         if (remote.opener==null) remote.opener = window;
}

var msg = "Sorry, this topic heading is not a linking item.\n" +
          "Please choose a subcategory for more information pertaining to this topic.";

var msg1 = "Sorry, this page is still under construction. Please check back soon\n" +
           "for an updated list of recent stroke articles.\n";

var msg2 = "Sorry, this page is still under construction. Please check back soon\n" +
           "for an updated stroke news archive.\n";
           
function jumpTo() {
         if (document.quickjump.area.options[document.quickjump.area.selectedIndex].value) {
             URL = document.quickjump.area.options[document.quickjump.area.selectedIndex].value;
             window.location.href = URL;
             quickjump.area.selectedIndex = 0;
         }
}