SunSoft = new Object();
SunSoft.App = function(){
	
	
	return {
		writeEmail : function (client, server, zone, elId){
			var el = document.getElementById(elId);
			var mail = client + '@' + server + '.' + zone;
			el.innerHTML = mail;
			el.style.cursor = 'pointer';
			el.onclick = function(){
				document.location.href = 'mailto:' + mail;
				return false;
			}
		}
	}
}();

