<!-- Hide from browsers that do not understand Javascript

<!-- Hide email address from spambots by not displaying email address. -->

var url = "NTIF.org";

function print_mail_to_link(who, name) {
  document.write("<A HREF=\"mailto");
  document.write(":" + who + "@" + url  +  "\">");
  document.write(name + "<\/a>");
  }

<!-- Display the document modification date. -->

 var date = new Date(document.lastModified);
 var mdr = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");     

 function display_change_date() {
  document.write("Updated: " + mdr[date.getMonth()] + " " + date.getDate()+ ", " + date.getFullYear()); 
  }

function getRootURL() {
	
            var thisURL = location.href; // This is the current URL
						
						if (thisURL.indexOf('file:///') == 0) {
						  var baseURL = thisURL.substring(0, thisURL.lastIndexOf('/'));  
						} else {
						var baseURL = thisURL.substring(0, thisURL.lastIndexOf('/'));
            }
						return baseURL ;
        }

// end hiding -->
