<!--

MIN_BREITE = 800;
MIN_HOEHE = 600;

MIN_FARBTIEFE = 16;
MIN_FARBTIEFE_BESCHR = "High Color";

// window.moveTo(0,0);
// window.resizeTo(screen.width,screen.height);

AUFLTEXT="Die Auflösung Ihres Bildschirmes beträgt nur "+screen.width+" x "+screen.height+" Pixel. Bitte mindestens "+MIN_BREITE+" x "+MIN_HOEHE+" Pixel einstellen!";
if(screen.height < MIN_HOEHE)
  alert(AUFLTEXT);

PIXELTEXT="Die Farbtiefe dieses Bildschirmes beträgt nur "+screen.pixelDepth+"-Bit. Bitte mindestens "+MIN_FARBTIEFE+"-Bit ("+MIN_FARBTIEFE_BESCHR+") einstellen!";
if(screen.pixelDepth)
{
  if(screen.pixelDepth < MIN_FARBTIEFE)
    alert(PIXELTEXT);
}
else
  if(screen.colorDepth < MIN_FARBTIEFE)
    alert(PIXELTEXT);

//-->

