
function openMailClient(strInput) {
	strInput = DecodeAdres(strInput)
	if (strInput.length > 0) document.location.href='mailto:' + strInput;
}
	
function DecodeAdres(strInput)	{
	var i;
	var strTemp;
	strTemp = '';
	strInput = unescape(strInput)
	for (i=0;i<strInput.length;i++) {
		strTemp = strTemp + String.fromCharCode(strInput.charCodeAt(i) + 23)
	}
	return strTemp
}
