// ***************************************************************************
// AFFICHAGE D'UNE IMAGE DANS UN POPUP DE FACON DYNAMIQUE AU MILIEU DE LA PAGE 
// ***************************************************************************

var w;
// Pour afficher les images sur la racine du cite Exp: index.htm en français (-2)
function resizePopUp_2(monImage,monTitre)
        {
	var larg=550;
	var haut=530;
	var Posx= (screen.width)? ((screen.width-(larg+180))/2) :0;
	var Posy=(screen.height)? ((screen.height-haut)/2) :0;
	var Fpos='top='+Posx+',left='+Posy+',width='+larg+',height='+haut+',scrollbars=0,resisable=0,status=0';
//Créer un nouveau obj Image	
	newImage=new Image();
	newImage.src=monImage;
	w = window.open('','popupimg',Fpos);
	w.document.write( "<html><head><title>"+monTitre+"</title>" );
	w.document.write( "<link href='../stylesheet.css' type='text/css' rel='stylesheet'>");
	w.document.write( "</head><body  leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>" );
	w.document.write( "<div class='divPopup1'><img src='../img/espace.gif' width='500px' height='10px' alt=''></div>" );
	w.document.write( "<div class='divPopup2'><img src='../img/espace.gif' alt='espace' height='20px' width='200'><a class='ancC' href='javascript:window.close();'> >> Fermer</a></div>");
	w.document.write( "<div class='divPopupimg'><center><img src='"+newImage.src+"'  alt=''></center><p class='style25'>* Les illustrations peuvent varier des machines chez les dépositaires et/ou des caractéristiques techniques.</p></div> ");
	w.document.write( "<div class='divPopup2'><img src='../img/espace.gif' alt='espace' height='20px' width='200'><a class='ancC' href='javascript:window.close();'> >> Fermer</a></div></body></html>");
//Forcer le focus sur le popup image	
	if (w.window.focus) {w.window.focus();}
	}

function resizePopUp(monImage, monTitre)
    {
	var larg=550;
	var haut=530;
	var Posx= (screen.width)? ((screen.width-(larg+180))/2) :0;
	var Posy=(screen.height)? ((screen.height-haut)/2) :0;
	var Fpos='top='+Posx+',left='+Posy+',width='+larg+',height='+haut+',scrollbars=0,resisable=0,status=0';
//Créer un nouveau obj Image	
	newImage=new Image();
	newImage.src=monImage;
	w = window.open('','popupimg',Fpos);
	w.document.write( "<html><head><title>"+monTitre+"</title>" );
	w.document.write( "<link href='stylesheet.css' type='text/css' rel='stylesheet'>");
	w.document.write( "</head><body  leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>" );
	w.document.write( "<div class='divPopup1'><img src='img/espace.gif' width='500px' height='10px' alt=''></div>" );
	w.document.write( "<div class='divPopup2'><img src='img/espace.gif' alt='espace' height='20px' width='200'><a class='ancC' href='javascript:window.close();'> >> Fermer</a></div>");
	w.document.write( "<div class='divPopupimg'><center><img src='"+newImage.src+"'  alt=''></center><p class='style25'>* Les illustrations peuvent varier des machines chez les dépositaires et/ou des caractéristiques techniques.</p></div> ");
	w.document.write( "<div class='divPopup2'><img src='img/espace.gif' alt='espace' height='20px' width='200'><a class='ancC' href='javascript:window.close();'> >> Fermer</a></div></body></html>");
//Forcer le focus sur le popup image	
	if (w.window.focus) {w.window.focus();}
	}
	
function FermerF()
{
if (w != null && !w.closed)
	w.close();
}