// Fullsize
function fullsizewin() {
  if (window.screen) {
     w = window.screen.availWidth;
     h = window.screen.availHeight;
  }
window.open('web.htm','fullwin','width='+w+',height='+h+',top=0,left=0');
  }  

// Plein ecran
function twPleinEcran(URL) {
			day = new Date();
			id = day.getTime();
			myWidth = screen.availWidth;
			myHeight = screen.availHeight;
			eval("page" + id + " = window.open(URL, '" + id + "', 'top=0,left=0,screenY=0,screenX=0,toolbar=0,scrollbars=0,location=0,statusbar=0,status=0,menubar=0,resizable=1,width=" + myWidth + ",height=" + myHeight + ",directories=0, ');");
			}

// Fin 

//Fonction pop-up 
<!--
function popup01(page)
	{
		window.open(page,'','top=150, left=100, width=740, height=600,resizable=yes, toolbar=no, scrollbars=yes, status=no');
	}
//-->	

