// JavaScript Document
function agranda(id)
	{
	if (document.getElementById(id))
		{
		if(document.getElementById(id).style.fontSize=='')
			{
			document.getElementById(id).style.fontSize='12px';
			}
		else
			{
			tama=parseInt(document.getElementById(id).style.fontSize.substr(0,document.getElementById(id).style.fontSize.indexOf('px')));
			tama=tama+2;
			document.getElementById(id).style.fontSize=tama+'px';
			}
		}
	}
	
function achica(id)
	{
	if (document.getElementById(id))
		{
		if(document.getElementById(id).style.fontSize=='')
			{
			document.getElementById(id).style.fontSize='8px';
			}
		else
			{
			tama=parseInt(document.getElementById(id).style.fontSize.substr(0,document.getElementById(id).style.fontSize.indexOf('px')));
			if (tama>=4) tama=tama-2;
			document.getElementById(id).style.fontSize=tama+'px';
			}
		}
	}
function clickemail()
	{
		if (document.getElementById('email').value=="------- e-mail -------") document.getElementById('email').value="";
	}
function bluremail()
	{
		if (document.getElementById('email').value=="") document.getElementById('email').value="------- e-mail -------";
	}