function Change_TextSize(divId,type)
{
	var pbTBFS = document.getElementById(divId).style.fontSize;
	var pbTBLH = document.getElementById(divId).style.lineHeight;
	var pbTBFSnum;
	var pfTBLHnum;

	if (pbTBFS == '')
	{
		if (type=="e")
		{
			pbTBFSnum = 14;
			pfTBLHnum = 17;
		}
		else if (type=="d")
		{
			pbTBFSnum = 12;
			pfTBLHnum = 15;
		}
	}
	else {
		pbTBFSnum = parseInt(pbTBFS);
		if (type=="e")
			pbTBFSnum++;
		else if (type=="d")
			pbTBFSnum--;
		pfTBLHnum = pbTBFSnum*1.5;
	}

	pbTBFS = pbTBFSnum.toString()+'px';
	pbTBLH = pfTBLHnum.toString()+'px';

	document.getElementById(divId).style.fontSize   = pbTBFS;
	document.getElementById(divId).style.lineHeight = pbTBLH;
}


function toggleBox(thisdiv)
{
	if (document.getElementById(thisdiv).style.display=='none')
		document.getElementById(thisdiv).style.display='block';
	else
		document.getElementById(thisdiv).style.display='none';
}

function toggleBoxVis(thisdiv)
{
	if (document.getElementById(thisdiv).style.visibility=='hidden')
		document.getElementById(thisdiv).style.visibility='visible';
	else
		document.getElementById(thisdiv).style.visibility='hidden';
}