this.moveTo(0,0);
this.resizeTo(screen.availWidth, screen.availHeight);
this.focus();

/*
   Preview de la vidéo :
*/	
function video(url)
{
	winwidth = screen.availWidth - 10;
	winheight = screen.availHeight - 30;
	window.open(url, '_blank', 'scrollbars=yes, width=' + winwidth + ', height=' + winheight + ', top=0, left=0, resizable');
} 