// 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_namecr() {
  document.write("<a class=\"credit\" href=\"mailto");
         document.write(":" + lhs + "@");
        document.write(rhs + "\">" + nhs + "<\/a>");
}
function print_e_mail_address() {
document.write(lhs + "&#64;" + rhs);
}
function hardReload() {
	location.reload(true);
}
function softReload() {
	history.go();
}


var newWindow
function makeNewWindow(URL,name,stuff) {
  newWindow = window.open(URL,name,stuff);
}			
function closeNewWindow() {
	if(newWindow && !newWindow.closed) {
		newWindow.close();
		newWindow = null;
		}		
	}


// end hide email address/mailto link from non-JavaScript-aware browsers

