function changeFontSize(inc)
{
  var p = document.getElementsByTagName('body');
  for(n=0; n<p.length; n++) {
    if(p[n].style.fontSize) {
       var size = parseInt(p[n].style.fontSize.replace("px", ""));
    } else {
       var size = 12;
    }
    p[n].style.fontSize = size+inc + 'px';
  }

  var p = document.getElementsByTagName('span');
  for(n=0; n<p.length; n++) {
    if(p[n].style.fontSize) {
       var size = parseInt(p[n].style.fontSize.replace("px", ""));
    } else {
       var size = 12;
    }
    p[n].style.fontSize = size+inc + 'px';
  }

  var p = document.getElementsByTagName('td');
  for(n=0; n<p.length; n++) {
    if(p[n].style.fontSize) {
       var size = parseInt(p[n].style.fontSize.replace("px", ""));
    } else {
       var size = 12;
    }
    p[n].style.fontSize = size+inc + 'px';
  }

  var p = document.getElementsByTagName('strong');
  for(n=0; n<p.length; n++) {
    if(p[n].style.fontSize) {
       var size = parseInt(p[n].style.fontSize.replace("px", ""));
    } else {
       var size = 12;
    }
    p[n].style.fontSize = size+inc + 'px';
  }

var p1 = document.getElementsByTagName('a');
  for(n=0; n<p1.length; n++) {
    if(p1[n].style.fontSize) {
       var size = parseInt(p1[n].style.fontSize.replace("px", ""));
    } else {
       var size = 12;
    }
    p1[n].style.fontSize = size+inc + 'px';
}

//    document.linkColor='#00F00F';
//    document.body.style.backgroundColor = '#00F00F';	

}
