

function picview(pic, alt, imgpath)
{

pic_path= "index.php?navigation=picview&picname="+pic+"&alt="+alt+"&imgpath="+imgpath;

var breite = 800;
var hoehe = 600;

links = (screen.width/2)-(breite/2);
oben = (screen.height/2)-(hoehe/2);

var hWnd = window.open
(pic_path,"PicView","height="+hoehe+", width="+breite+", directories=no, toolbar=no, location=no, menubar=no, scrollbars=1, status=no, resizable=1, dependent=no, top ="+oben+",left ="+links+",screenY="+oben+",screenX="+links);


}




   function GoAddressWindow(url, breite, hoehe)
   {

      links = (screen.width/2)-(breite/2);
      oben = (screen.height/2)-(hoehe/2);
      var hWnd = window.open
(url,"AniView","height="+hoehe+", width="+breite+", directories=no, toolbar=no, location=no, menubar=no, scrollbars=0, status=no, resizable=no, dependent=no, top ="+oben+",left ="+links+",screenY="+oben+",screenX="+links);
      if ((document.window != null) && (!hWnd.opener))
         hWnd.opener = document.window;
   }




