Bildbreite=0;
Bildhoehe=0;
verkleinert=false;

function AendernBild()
{
 Standardbreite=screen.width-100;
 Standardhoehe=screen.height+200;
 Bildobjekt=document.getElementById('Bild');
 if (Bildobjekt.width>Standardbreite||Bildobjekt.height>Standardhoehe||Bildbreite>Standardbreite||Bildhoehe>Standardhoehe)
 {
  if (verkleinert==true)
  {
   Bildobjekt.width=Bildbreite;
   Bildobjekt.height=Bildhoehe;
   verkleinert=false;
  }
  else
  {
   Bildbreite=Bildobjekt.width;
   Bildhoehe=Bildobjekt.height;
   verkleinert=true;
   Bildobjekt.style.cursor="pointer";
   if (Bildobjekt.width>Standardbreite&&Bildobjekt.height>Standardhoehe)
   {
    if (Standardbreite/Standardhoehe>Bildobjekt.width/Bildobjekt.height)
    {
     Bildobjekt.height=Standardhoehe;
     Bildobjekt.width=Standardhoehe/Bildhoehe*Bildbreite;
    }
    else
    {
     Bildobjekt.width=Standardbreite;
     Bildobjekt.height=Standardbreite/Bildbreite*Bildhoehe;
    }
   }
   else
   {
    if (Bildobjekt.width>Standardbreite)
    {
     Bildobjekt.width=Standardbreite;
     Bildobjekt.height=Standardbreite/Bildbreite*Bildhoehe;
    }
    else
    {
     Bildobjekt.height=Standardhoehe;
     Bildobjekt.width=Standardhoehe/Bildhoehe*Bildbreite;
    }
   }
  }
 }
}