  if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) <5))
  {
    document.write('<link rel="stylesheet" href="http://213.133.111.71/styles/ns4.css" type="text/css" />')
  }
  else
  {
    document.write('<link rel="stylesheet" href="http://213.133.111.71/styles/stand.css" type="text/css" />')
  }

// Javascript code that fixes a bug in some versions of Netscape Navigator
function reloadPage(init)
{  //reloads the window if Nav4 resized
  if (init==true) with (navigator)
	{
	  if ((appName=="Netscape")&&(parseInt(appVersion)==4))
		{
      document.pgW=innerWidth;
			document.pgH=innerHeight;
      onresize=reloadPage;
		}
	}
  else if (innerWidth!=document.pgW || innerHeight!=document.pgH)
    location.reload();
}
reloadPage(true);
//