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

