// (c) 2003 by  T.Bley | UltraMixer
function magnify(src,imgWidth,imgHeight,label,magnifyTpl)
{
	var docWidth = imgWidth + 100;
	var docHeight = imgHeight + 180;
	var presets=",scrollbars=no,resizable=yes";
	var posX = (screen.width - docWidth) / 2;
	var posY = (screen.height - docHeight) / 2;
		
	if(docWidth > screen.width)
	{
		docWidth=screen.width-50;
		presets=",scrollbars=yes,resizable=yes";
		posX=0;
	}
	if(docHeight > screen.height)
	{
		docHeight=screen.height-50;
		presets=",scrollbars=yes,resizable=yes";
		posY=0;
	}

	var groesse = "width= "+docWidth+", height="+docHeight;
	var attr=groesse.concat(presets);
	
	var page="magnify.php?src="+src+"&label="+label+"&magnifyTpl="+magnifyTpl;
	
	fenster=window.open(page,"f",attr);
	
	fenster.moveTo(posX,posY);
	fenster.resizeTo(docWidth,docHeight);
	fenster.focus();
}
