

/*
functioion: truncateEMailAdress
desc: formats email adresse if its longer than 12 characters, cause logIn Box is too small
@param e the email address to format
@return the formatted email address
*/
function truncateEMailAdress(e)
{
	if(e.length > 14)
	{
		e = e.substring(0,11);
		e = e+"...";
	}
	
	return e;
}