document.write('<script type="text/javascript" src="' + (isBackend?'../':'') + 'lib/js/icpictures/icpictures.js"></script>');

var currentFontSize = 12;
function incrementDecrementFont(step, object1, object2)
{		
	if ((currentFontSize+step) <= 8 || (currentFontSize+step) >= 16) 
	{	
		return false;
	}
	else
	{	
		currentFontSize += step;
		$(object1).style.fontSize = currentFontSize + 'px';
		$(object2).style.fontSize = currentFontSize + 'px';
	}
}
