var fontSize = 12; 

	
	
	function sendEmail(encodedEmail)
	{
		var email = "";
		for (i=0; i < encodedEmail.length;)
		{
			var letter = "";
			letter = encodedEmail.charAt(i) + encodedEmail.charAt(i+1)
			email += String.fromCharCode(parseInt(letter,16));
			i += 2;
		}
		location.href = email;
	}
	
	function setFaceSize()
	{
		lineHeight = fontSize + Math.round(.3*fontSize);
		
		for (i = 1; i < 3; i++) 
		{
			obj = document.getElementById("content" + i);			
			if (obj)
			{
				obj.style.fontSize = fontSize+"px";
				obj.style.lineHeight = lineHeight+"px";
				
				if (obj.childNodes.length > 0)
				{
				    for (j=0;j<obj.childNodes.length;j++)
	                {
						if (obj.childNodes[j].style!=null)
						{
							obj.childNodes[j].style.fontSize = fontSize+"px";
							obj.childNodes[j].style.lineHeight = lineHeight+"px";
						}
	                }
	            }
			}
		}
	} 
	
	function eventFaceLarger()
	{
		fontSize = fontSize+1;
		
		
		
		if (fontSize > 15) {
			
			fontSize = 15;
		
		}
	
		setFaceSize();
	}
	
	
	function eventFaceSmaller()
	{
		fontSize = fontSize-1;
		
		if (fontSize < 10) {
			
			fontSize = 10;
			
		}
	
		setFaceSize();
	} 