// JavaScript Document
// create a flexi font size switcher
// employing a abstract function 
// to re-use this code, just pass the id

function fsize(size,unit,id){
	var vfontsize = document.getElementById(id);
	if(vfontsize){
		vfontsize.style.fontSize = size + unit;
		}
	}