// $VER: global.js Copyright (c) 1997-2006 netminds. All rights reserved.

var ZFenster = false;


function ZoomImage(Seite)
{
  var Seite = "../scripts/zoomimage.php?img=" + Seite;
  
  if (!ZFenster || ZFenster.closed)
  {
    ZFenster = window.open(Seite, "ZoomWin", "width=800,height=765,toolbar=no,scrollbars=no,location=no,directories=no,status=no,menubar=no,resizable=yes,hotkeys=yes", dependent="yes");
  }
  else
    ZFenster.location.href = Seite;

  if (ZFenster) ZFenster.focus();
}  
