	function writeem(nm,tit)
	{
		// obfusicator for email addresses
		var dom="360replays";
		var ext=".com";
		document.write("<a title=\"" + tit + "\" href=\"mailto:");
		document.write(nm + "@" + dom);
		document.write(ext);
		document.write("\">");
		document.write(nm + "@" + dom);
		document.write(ext);
		document.write("</a>");
	}
	function writemsn(nm,tit)
	{
		// obfusicator for msn addresses
		var dom="360replays";
		var ext=".com";
		document.write("<a title=\"" + tit + "\" href=\"msnim:chat?contact=");
		document.write(nm + "@" + dom);
		document.write(ext);
		document.write("\">");
		document.write(nm + "@" + dom);
		document.write(ext);
		document.write("</a>");
	}
