function ShowPicture(sFoto, sTitel)
	{
	
	NewImg = new Image();
	NewImg.src = sFoto;
	var iWidth = NewImg.width;
	var iHeight = NewImg.height;		
	
	iWidth = iWidth * 1.3
	iHeight = iHeight * 1.3
	var iNewHeight
	iNewHeight = iHeight + 60;
	
	var sOptions;
	sOptions = "toolbar=no,scrollbars=no,width="+ iWidth +",height="+ iNewHeight;
	var wFoto;

	wFoto=window.open("",'',sOptions);	
	sHtmlText = '<html><head><title>'+ sTitel +'</title></head><body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0"><center><img src="'+ sFoto +'" width="'+ iWidth +'" height="'+ iHeight +'">' +
		'<br><br><a href="javascript:window.close()"><font color="#000000"><b>close window</b></font></a></center></body>';
	wFoto.document.writeln(sHtmlText);
	wFoto.document.close();
	}
