
  function view_image(img, breite, hoehe)
  {
    fenster = window.open('viewimg.php?img=' + img, '', 'width='+breite+',height='+hoehe+',top=100,left=150,scrollbars=no,resizable=no,menubar=no,location=no,toolbar=no');
    return;
  }

  function view_mediaimage(img, breite, hoehe, mediaid, desc)
  {
    if(desc)
    {
      fenster = window.open('viewimg.php?img=' + img + '&mediaid=' +mediaid, '', 'width='+breite+',height='+hoehe+',top=100,left=150,scrollbars=yes,resizable=no,menubar=no,location=no,toolbar=no');
    }
    else
    {
      fenster = window.open('viewimg.php?img=' + img + '&mediaid=' +mediaid, '', 'width='+breite+',height='+hoehe+',top=100,left=150,scrollbars=yes,resizable=no,menubar=no,location=no,toolbar=no');
    }
    return;
  }

