if (this.outerWidth<900)
	{
	document.getElementById("bbody").style.fontSize="80%";
	}	
		

this.onresize=function()
{
	if (this.outerWidth<900)
		{
		document.getElementById("bbody").style.fontSize="80%";
		}		
	if (this.outerWidth>900)
		{
		document.getElementById("bbody").style.fontSize="100%";	
		}
}


