function hello( name, domain ) {	var loc = domain + ".com";	loc = "@" + loc;	loc = name + loc;	loc = "mailto:" + loc;	window.location = loc;		}