<!--

function aufrufen ()
{
     var hoehe,breite;
     hoehe=screen.height;
     breite=screen.width;

  if (navigator.appName=='Netscape' && navigator.appVersion.charAt(0)>='4')
     {
     if (hoehe>600 && breite>800)
     {
      parent.frames[0].location.href="../pages/willkommenGross.htm";
      parent.frames[1].location.href="../pages/naviGrossNetscape.htm";
     }
     else
     {
      parent.frames[0].location.href="../pages/willkommenKlein.htm";
      parent.frames[1].location.href="../pages/naviKlein.htm";
     }
     }

else  if (navigator.appName=='Microsoft Internet Explorer' && navigator.appVersion.charAt(0)>='4')
     {

     if (hoehe>600 && breite>800)
     {
      parent.frames[0].location.href="../pages/willkommenGross.htm";
      parent.frames[1].location.href="../pages/naviGrossExplorer.htm";
     }
     else
     {
      parent.frames[0].location.href="../pages/willkommenKlein.htm";
      parent.frames[1].location.href="../pages/naviKlein.htm";
     }
     }
     else
     {
      parent.frames[0].location.href="../pages/willkommenGross.htm";
      parent.frames[1].location.href="../pages/naviGrossNetscape.htm";

     }

}


//-->