<!--

function PopUp(Picture,Breite,Hoehe)
{

xsize = Breite + 10
ysize = Hoehe + 29

ScreenWidth = screen.width;
ScreenHeight = screen.height;

xpos = (ScreenWidth/2)-(xsize/2);
ypos = (ScreenHeight/2)-(ysize/2);
	
	NewWindow=window.open("","Picture","height="+ysize+",width="+xsize+",scrollbars=no,resizable=no,top="+ypos+",left="+xpos+"");
	NewWindow.document.write ("<html><head><title>ImageViewer");
	NewWindow.document.write ("</title></head>");
        NewWindow.document.write ("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' onload='focus()'>");
	NewWindow.document.write ("<a href='#' onclick='window.close()'><img src=");
	NewWindow.document.write (Picture + " border='0'");
	NewWindow.document.write ("></a>");
	NewWindow.document.write ("</body></html>");
	NewWindow.document.close();
        NewWindow.resizeTo(xsize,ysize); 
}

function PopUpSite(site,w,h)
{
  OpenSite = window.open(site,'OpenSite','width='+w+',height='+h+',resizeable=no,scrollbars=no');
  OpenSite.opener = self;
}

function PopUpAGB(site,w,h)
{
  OpenSite = window.open(site,'OpenSite','width='+w+',height='+h+',resizeable=no,scrollbars=yes');
  OpenSite.opener = self;
}


function PopUpVar(img,name,w,h)
{
 PopUpWindow = Window.open(''+img+'',''+name+'','width='+w+',height='+h+',scrollbars=no');
 PopUpWindow.focus();
}
//-->