﻿//**************Below functions are to change the style / look of the 
function FontSize(size) {
    var p = document.getElementsByTagName('p');
  for(i=0;i<p.length;i++) {
      p[i].style.fontSize = size + "px"
  }
 
}

function FontColor(color) {
    var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
       p[i].style.color = color;
   }
 }

