function smallFonts() {
   document.body.style.fontSize = 12 +'px';
}
function normalFonts() {
   document.body.style.fontSize = 14 +'px';
}
function largeFonts() {
   document.body.style.fontSize = 16 +'px';
}