function flashMapped(mID, lng) {

	// dimension limit
	var maxDim = 2880;
	
	// shrink popup
	var distH = 56;
	var distW = 32;
	
	// calculate popup width
	var actWidth = parseInt(screen.availWidth);
	var theWidth = (actWidth-distW) - (actWidth-distW)%10;
	if (theWidth > maxDim) {
		theWidth = maxDim;
	}
	
	// calculate popup height
	var actHeight = parseInt(screen.availHeight);
	var theHeight = (actHeight-distH) - (actHeight-distH)%10;
	if (theHeight > maxDim) {
		theHeight = maxDim;
	}
	
	if (callBack = WindowOpen('http://www.statatlas.bfs.admin.ch/inBetweenCreation.php?w='+theWidth+'&h='+theHeight+'&mID='+mID+'&lng='+lng,'flashMapped', theWidth, theHeight, 'location=no,menubar=no,personalbar=no,resizeable=no,scrollbars=no,status=no,toolbar=no', true)) {
		callBack.focus();
	} else {
		closeAllInfoBars();
		createInfoBar(noPopUp, '#', '_self', true);
	}
}