
// pour supprimer les frames
if (top.frames.length!=0) {
top.location=self.document.location.href;
}
// pour faire du plein écran
window.self.focus();
window.moveTo(0,0);
if (document.all) {
	window.resizeTo(screen.availWidth,screen.availHeight);
} else  {
	if (window.outerHeight<screen.availHeight||window.outerWidth<screen.availWidth) {
	window.outerHeight = screen.availHeight;
	window.outerWidth = screen.availWidth;
	}
}
