<!-- 
// fotogalerie
var newWindow="";
var flagwindow=0;
function OpenFoto(url, x, y)
	{
	if(x=='') x=500;
	if(y=='') y=375;
	if(flagwindow==1) closewin();
	newWindow=window.open(url, 'top', 'left=100,top=100,width='+x+',height='+y+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
	flagwindow=1;
	}

function closewin()
	{
	if(flagwindow)
		{
		flagwindow=0;
		newWindow.close();
		}
	}
// -->
