 /***************************************/
 /* if NS4 then need to use smaller EM  */
 /* than newer browsers and check for   */
 /* window resize - need to reload page */ 
 /* when page resized                   */
 /***************************************/

var origWidth, origHeight, resizeInterval;

	function resizeHandler() 
	{
		if ((innerWidth == origWidth) && (innerHeight == origHeight)) 
			return;

		origWidth = innerWidth;
		origHeight = innerHeight;
		window.location.reload();
	}

 if (document.layers)
 {
	 document.write('<style type="text/css">BODY, TD { font-size: 0.6em ! important; } A,A:link,A:visited,A:active	{ text-decoration: underline ! important; }  </style>');

	 origWidth = window.innerWidth;
	 origHeight = window.innerHeight;
	 resizeInterval = setInterval("resizeHandler()",500);
 }