- function pleinEcran()
- {
- window.resizeTo(screen.width+10,screen.height); //on agrandit la fenetre à la taille de l'écran
- haut=screen.height-parent.document.body.clientHeight; //calcul de la hauteur des barres d'outils
- window.moveTo (-5,-haut+27) ; //on place la fenetre pour ne plus voir les barres de l'explorer
- window.resizeTo(screen.width+10,screen.height+haut); //on agrandit la fenetre de façon à ne voir que la page
-
- if ((document.body.clientHeight > 768 && screen.height == 768) //Ce test sert dans le cas ou la fenetre ie etait en mode agrandie
- || (document.body.clientHeight > 600 && screen.height == 600) )
- {
- var eccart = parent.document.body.clientHeight - screen.height;
- window.moveTo (-5,-haut+27+eccart);
- window.resizeTo(screen.width+10,screen.height+haut-eccart);
- }
- }
-
function pleinEcran()
{
window.resizeTo(screen.width+10,screen.height); //on agrandit la fenetre à la taille de l'écran
haut=screen.height-parent.document.body.clientHeight; //calcul de la hauteur des barres d'outils
window.moveTo (-5,-haut+27) ; //on place la fenetre pour ne plus voir les barres de l'explorer
window.resizeTo(screen.width+10,screen.height+haut); //on agrandit la fenetre de façon à ne voir que la page
if ((document.body.clientHeight > 768 && screen.height == 768) //Ce test sert dans le cas ou la fenetre ie etait en mode agrandie
|| (document.body.clientHeight > 600 && screen.height == 600) )
{
var eccart = parent.document.body.clientHeight - screen.height;
window.moveTo (-5,-haut+27+eccart);
window.resizeTo(screen.width+10,screen.height+haut-eccart);
}
}