function zoom(datei,breit,hoch)
{
	bigFoo = window.open(datei, breit+"zoomed"+hoch, "width="+breit+",height="+hoch+",resizable=no,menubar=no,status=no,locationbar=no,dependent=yes,scrollbars=no");
	if( bigFoo.closed == false )
	   bigFoo.focus();
}

function zoom_scroll(datei,breit,hoch)
{
	bigFoo = window.open(datei, breit+"zoomed"+hoch, "width="+breit+",height="+hoch+",resizable=yes,menubar=no,status=no,locationbar=no,dependent=yes,scrollbars=yes");
	if( bigFoo.closed == false )
	   bigFoo.focus();
}

