// get the host and path names from the current URL
	var host = location.hostname
// if host begins with www. remove the www.

	var domain = host.replace(/www./i,"");

	var username = "admin";
	
	document.write ("<a href='mailto:" + username + "@" + domain + "'>" + username + "@" + domain+ "</a>");
  
