
// agrandit la fenêtre à la taille optimale:

function misenpage (x_max, y_max) {
	if (screen.availHeight < y_max) y_max = screen.availHeight ;
	if (screen.availWidth < x_max) x_max = screen.availWidth ;
	window.moveTo(0, 0) ;
	window.resizeTo(x_max, y_max) ;
} 

onFocus = misenpage(800, 1200) ;
if (self != top) top.location=self.location ;
