﻿    var anzbig = null;
    var anzsma = null;

		var WinLayoutBig = "width=650,height=427,scrollbars=0,toolbar=0,resizable=0";
		var WinLayoutsma = "top=0,left=0,width=640,height=427,scrollbars=0,toolbar=0,resizable=0";
		
		function dispbig(page) {
		     if (window.focus) {
		       anzbig = window.open(page,'down',WinLayoutBig);
		       anzbig.focus();
		     }
		}
		
		function dispsma(page) {
		
		     if (window.focus) {
		       anzsma = window.open(page,'small',WinLayoutsma);
		       anzsma.focus();
		     }
		}

		function ende() {
		   if ((anzbig) && (!anzbig.closed))
		     anzbig.close();
		   if ((anzsma) && (!anzsma.closed))
		     anzsma.close();
		 }
