function fullScrn(theFile,theWin) {
	var myURL = theFile;	
	var larg_schermo=screen.availWidth;
	
	if (larg_schermo <= 1280) {
		larg_schermo -= 10;
	} else {
		larg_schermo -= 70;
	}
	
	var altez_schermo=screen.availHeight;
	if (altez_schermo <= 768) {
		altez_schermo -= 30;
	} else {
		altez_schermo -= 100;
	}
	
	//window.alert('Fenster Name: '+theWin);
	
	window.open(myURL,theWin,'width='+larg_schermo+',height='+altez_schermo+',top=0,left=0,resizable=yes,status=yes,scrollbars=yes,toolbar=yes,location=yes');//tmtC_fullscreenOpenerEnd
	return false;
}