if (this.outerWidth<900)
{
	document.getElementById("body").style.fontSize="75%";
}	


this.onresize=function()
{
	if (this.outerWidth<900)
	{
		document.getElementById("body").style.fontSize="75%";
	}		
	if (this.outerWidth>900)
	{
		document.getElementById("body").style.fontSize="90%";	
	}
}