var min=9;var max=21;var def=14;function fontSizeDefault(){	var p = document.getElementsByTagName('p');	for(i=0;i<p.length;i++) {		p[i].style.fontSize = def+"px"	}}function fontSizeInc() {	var p = document.getElementsByTagName('p');//	alert("There are " + p.length + " <p> elements in this document");	for(i=0;i<p.length;i++) {		if(p[i].style.fontSize) {			var s = parseInt(p[i].style.fontSize.replace("px",""));		} else {			var s = 12;		}		if(s!=max) {			s += 1;		}		p[i].style.fontSize = s+"px"	}}function fontSizeDec() {	var p = document.getElementsByTagName('p');	for(i=0;i<p.length;i++) {		if(p[i].style.fontSize) {			var s = parseInt(p[i].style.fontSize.replace("px",""));		} else {			var s = 12;		}		if(s!=min) {			s -= 1;		}		p[i].style.fontSize = s+"px"	}   }
