// JavaScript Document

function big()
//Big body text
{
document.body.style.fontSize
="1.1em";
}

function biggest()
//Bigger body text
{
document.body.style.fontSize
="1.3em";
}

function norm()
//Change body text back to normal
{
document.body.style.fontSize
="1em";
}
//Note you can change the fontSize values
//End of textsizer.js file