function incFontSize (id) 
{
	var curSize = document.getElementById(id).style.fontSize ;
	var size = new String ( curSize ) ;
	if ( size == "" ) size="12" ;
	else size.replace(/pt$/i,"");
	var fontsize = parseInt(size,10) ;
	fontsize++ ;
	if ( fontsize < 26 ) document.getElementById(id).style.fontSize=fontsize+'pt' ;
}

function decFontSize (id)
{
	var curSize = document.getElementById(id).style.fontSize ;
	var size = new String ( curSize ) ;
	if (  size == "" ) size="9" ;
	else size.replace(/pt$/i,"");
	var fontsize = parseInt(size,10) ;
	fontsize--;
	if ( fontsize > 4 ) document.getElementById(id).style.fontSize=fontsize+'pt' ;
}

