// JavaScript Document
function fittowidth()
{
var obj = document.getElementById("weathercontent");
//alert ("clientWidth:" + obj.clientWidth);
//alert ("clientHeight:" + obj.clientHeight);
//alert ("isMultiLine:" + obj.isMultiLine);
//alert ("offsetWidth:" + obj.offsetWidth);
//alert ("offsetHeight:" + obj.offsetHeight)
//alert ("width:" + obj.width);
//alert ("fontSize:" + obj.style.fontSize);

if (obj.offsetHeight>15) 
   obj.style.fontSize='9px';
else 
   obj.style.fontSize='12px';
}