function changeFontSize(element,step)
{

    step = parseInt(step,10);
    var el = document.getElementById(element);
    if (el.style.fontSize=='')
    {
        el.style.fontSize="12px";
    }
    var curFont = parseInt(el.style.fontSize,10);
    el.style.fontSize = (curFont+step) + 'px';
}