// JavaScript Document
// hide email address/mailto link from non-JavaScript-aware crawlers
//var lhs = "kande";     // change this to your username/alias
//var rhs = "igc.org";  // change this to your domain

function print_mail_to_link() {
  document.write("<a href=\"mailto");
         document.write(":" + lhs + "@");
        //document.write(rhs + "\">kande&#64;igc&#46;org<\/a>");
        document.write(rhs + "\">" + lhs + "&#64;" + rhs + "<\/a>");
}
function print_mail_to_name() {
  document.write("<a href=\"mailto");
         document.write(":" + lhs + "@");
        document.write(rhs + "\">" + nhs + "<\/a>");
}

function print_mail_to_namebf() {
  document.write("<a class=\"bold\" href=\"mailto");
         document.write(":" + lhs + "@");
        document.write(rhs + "\">" + nhs + "<\/a>");
}

function print_mail_to_namelnav() {
  document.write("<a class=\"lnav\" href=\"mailto");
         document.write(":" + lhs + "@");
        document.write(rhs + "\">" + nhs + "<\/a>");
}
function print_mail_to_namenav() {
  document.write("<a class=\"nav\" href=\"mailto");
         document.write(":" + lhs + "@");
        document.write(rhs + "\">" + nhs + "<\/a>");
}

function print_e_mail_address() {
document.write(lhs + "&#64;" + rhs);
}
// end hide email address/mailto link from non-JavaScript-aware browsers
function updated()  {
var modified = document.fileModifiedDate;
document.getElementById("modified").innerText = modified;
}

var newWindow
function makeNewWindow(URL,name,stuff) {
  newWindow = window.open(URL,name,stuff);
}		

function closeNewWindow() {
	if(newWindow && !newWindow.closed) {
		newWindow.close();
		newWindow = null;
		}		
	}
