	if (window.innerWidth)
		{width = window.innerWidth
		 height = window.innerHeight
		}
	else
		{if (document.documentElement.clientWidth) 
			{if (document.documentElement.clientWidth > 0) 
				{prefix = document.documentElement} 
			 else 
			 	{prefix = document.body}
			} 
		 else 
		 	{prefix = document.body}
		 width = prefix.clientWidth
		 height = prefix.clientHeight
		}
	WidthSize = width / 1150
	HeightSize = height / 688
	BaseFontSize = ((WidthSize < HeightSize) ? WidthSize  : HeightSize) * 140
	/* alert ("Width : " + width + "px; " + "BaseFontSize : " + BaseFontSize + "%") */
	if (BaseFontSize < 100) BaseFontSize = 100
	document.writeln ("<style type='text/css'>")
	document.writeln ("body {width:100%; font-family: Tahoma, 'Trebuchet MS', Verdana, sans-serif}")
	document.writeln ("body {font-size: " + BaseFontSize + "%}")
	document.writeln ("<\/style>")
	/* alert ("Document.Writeln ()s complete ...") */
	