<!--
var bVersion = navigator.appVersion.substring(0,3);
var bName    = navigator.appName;
var bshortName="[unknown]";
var bPlatform = "";
var notWindows3_1 = (navigator.appVersion.indexOf("Win16") == -1);
var flashVer="not detected";
var screenRes="?";
var colors="?";
var ms=false;
var ns=true;

getConf();

function logo()
{
  document.write("<br><br><a href='javascript:goNow()'><img height=90 width=178 src='./gfx/logo.gif' border=0 alt='::launch::'></a>");
}

function writeToDoc()
{
  document.write("<div align='center'><br><br><img height=14 width=96 src='./gfx/configuration.gif' alt='' border=0><br></div>");
  document.write("<strong>platform:</strong>&nbsp;" + bPlatform + "<br>");
  document.write("<strong>browser:</strong>&nbsp;" + bshortName + " "+bVersion+"<br>");
//  document.write("<strong>flash:</strong>&nbsp;plugin "+flashVer+"<br>");
  document.write("<strong>screen:</strong>&nbsp;"+screenRes+"<br>");
  document.write("<strong>colors:</strong>&nbsp;"+colors+"<br>");
}

function getConf()
{
if (bName.indexOf("Microsoft") != -1) {ms=true; ns=false} //Microsoft-Browser
if (bName.indexOf("Netscape") != -1) {ns=true; ms=false;} //Netscape-Browser

if (screen) screenRes=screen.width+"x"+screen.height;
if (screen) colors=screen.colorDepth+" Bit";

if (ms)
  {
    bshortName="MSIE";
    bVersion=navigator.appVersion;
    bVersion=bVersion.substr(bVersion.indexOf("MSIE")+5,3);
  }
if (ns) bshortName="Netscape";

if (navigator.appVersion.indexOf("Win") != -1) bPlatform = "Windows";
if (navigator.appVersion.indexOf("Mac") != -1) bPlatform = "Macintosh";

/*if (ms)
  {
    flashVer=flashInstalled;
  }
else
   {
     flashVer=detectFlashPlugin();
   }
*/
}

/*
function detectFlashMime() {
  var plugin = ((navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ?
                      navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : null);
  if (plugin==null)
  {return "not detected";}
  else
   {return (parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)));}
}

function detectFlashPlugin() {
  var plugin = ((navigator.plugins && navigator.plugins["Shockwave Flash"]) ?
                   navigator.plugins["Shockwave Flash"] : null);
  if (plugin==null)
  {return detectFlashMime();}
  else
   {return (parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)));}
}
*/

function goFlash()
{window.location.href="index.html";}

function warnings()
{
    document.write("<div align='center'><br><img height=14 width=68 src='./gfx/warnings.gif' alt='' border=0><br></div>");
    errocc=0;

    if (bshortName=="[unknown}") {
       document.write(":: Your browser is wether the IE nor the Netscape Navigator.<br>&nbsp;. It may be incompatible with the HTML code.<br>");
       errocc++;
    }

    if (bVersion<4) {
       document.write(":: The version number of your browser is lower than 4.<br>&nbsp;. Problems with some java scripts or some CSS may occur!<br>");
       errocc++;
    }

    if (screen)
    {
      if (screen.width<1024) {document.write(":: Your screen resolution is lower than 1024x768!<br>&nbsp;. The flash movie may be displayed incorrectly.<br>");errocc++;}
      if (screen.colorDepth<16) {document.write(":: The current color depth is lower than the recommend of 16 Bit.<br>&nbsp;. Some pictures may be displayed with strange colors.<br>");errocc++;}
    }
    else {
         document.write(":: Unable to verify your display settings.<br>");
         errocc++;
    }
/*
    if (flashVer!="5" && flashVer!="4" && flashVer!="not detected") {
       document.write(":: Could not find the flash 4 plugin.<br>&nbsp;. You need at least the flash 4 plugin to continue!<br>&nbsp;. Download it at <a href='http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' target='_blank'>www.macromedia.com</a> !<br>");
       errocc++;
    }

    if (flashVer=="not detected") {
       document.write(":: No flash plugin found or your browser is not compatible.<br>&nbsp;. You need at least the flash 4 plugin to continue!<br>&nbsp;. Download it at <a href='http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' target='_blank'>www.macromedia.com</a> !<br>");
       errocc++;
    }
*/
    if (errocc==0) document.write("No warnings.");
}
//-->