<!--
function blockError(){return true;}
window.onerror = blockError;

function checkBrowserWidth()
{
var theWidth = getBrowserWidth()*0.08;
if (theWidth < 60)
			{
			document.getElementsByTagName("body").item(0).style.fontSize='62.5%';
		}
	else { 
			
			document.getElementsByTagName("body").item(0).style.fontSize=theWidth+'%';
		}
}

function getBrowserWidth()
{
	if (window.innerWidth)
	{
		return window.innerWidth;
	}
	else if (document.documentElement && document.documentElement.clientWidth != 0)
	{
		return document.documentElement.clientWidth;
	}
	else if (document.body)
	{
		return document.body.clientWidth;
	}
	
	return 0;
}



// -->


