function MM_popupMsg(msg) { //v1.0
  alert(msg);}
function GP_popupConfirmMsg(msg) { //v1.0
  document.MM_returnValue = confirm(msg);}

function em_mto(name) { //v1.0 bt CjD  this returne a mailto link for the name given
	var host = "migranthelpline";
	var dot = ".";
	var tld = "org.uk";
	var link = name + "@" + host + dot + tld;
	document.write("<a hre" + "f=ma" + "ilto" + ":" + name + "@" + host + dot + tld + ">" + link + "</a>"); 
}
function em_em(name) { //v1.0 bt CjD   this returne a just the e ad for the name given
	var host = "migranthelpline";
	var dot = ".";
	var tld = "org.uk";
	return(name + "@" + host + dot + tld);
}
function em_em_nd(d,name) { //v1.0 bt CjD   this returne a just the e ad for the name & dom given
	return(name + "@" + d);
}
function em_mto_nd(d,name) { //v1.0 bt CjD  this returne a mailto link for the name  & dom given
	var link = name + "@" + d;
	document.write("<a hre" + "f=ma" + "ilto" + ":" + name + "@" + d + ">" + link + "</a>"); 
}