function PopupImage(img) { 
titre="Design et Modélisation 3D - Agence 2-3D.COM"; 
w=open("",'image','width=500,height=400,top=0,toolbar=no,scrollbars=no,resizable=yes'); 
w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE><!-- DEBUT DU SCRIPT -->");
w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+50,document.images[0].height+85); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>"); 
w.document.write("<BODY bgcolor='#000000' onload='checksize()' onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0 top=0 left=0>");
w.document.write("<TABLE align='center' bgcolor='#C15A1C' width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
w.document.write("<TD bgcolor='#000000' valign='middle' align='center'><IMG src='"+img+"' border=0 alt='Cliquer pour fermer' title='Cliquer pour fermer'>"); 
w.document.write("</TD></TR></TABLE>");
w.document.write("</BODY></HTML>"); 
w.document.close(); 
}

/*Script téléchargé sur EasyScript (www.easy-script.com)*/
texteAff = " Infographiste 3D : Modelisation 3D - Prototypage 3D virtuelle | Didier Cussatlegras-Weil - Agence 2-3D.COM";
place = 0;
tempoLong = 100;
function EJSAnimEtat2()
	{
	texteTemp1 = texteAff.substring(0,place);
	texteTemp2 = texteAff.substring(place,place+1);
	texteTemp2 = texteTemp2.toUpperCase();
	texteTemp3 = texteAff.substring(place+1,texteAff.length);
	window.status = texteTemp1 + texteTemp2 + texteTemp3;
	if (place>texteAff.length)
		{
		place=0;
		tempoLong=1000;
		}
	if (place==0)
		tempoLong=110;
	place++;
	tempoAnimEtat2 = setTimeout("EJSAnimEtat2()",tempoLong)
	}
function EJSAnimEtat2Break()
	{
	window.status = "";
	clearTimeout(tempoAnimEtat2);
	}
	
	/* Merci*/
/*
Gradual-Highlight Image Script II- 
By J. Mark Birenbaum (birenbau@ugrad.cs.ualberta.ca)
Permission granted to Dynamicdrive.com to feature script in archive
For full source to script, visit http://dynamicdrive.com
*/

nereidFadeObjects = new Object();
nereidFadeTimers = new Object();

/* object - image to be faded (actual object, not name);
 * destop - destination transparency level (ie 80, for mostly solid)
 * rate   - time in milliseconds between trasparency changes (best under 100)
 * delta  - amount of change each time (ie 5, for 5% change in transparency)
 */

function nereidFade(object, destOp, rate, delta){
if (!document.all)
return
    if (object != "[object]"){  //do this so I can take a string too
        setTimeout("nereidFade("+object+","+destOp+","+rate+","+delta+")",0);
        return;
    }
        
    clearTimeout(nereidFadeTimers[object.sourceIndex]);
    
    diff = destOp-object.filters.alpha.opacity;
    direction = 1;
    if (object.filters.alpha.opacity > destOp){
        direction = -1;
    }
    delta=Math.min(direction*diff,delta);
    object.filters.alpha.opacity+=direction*delta;

    if (object.filters.alpha.opacity != destOp){
        nereidFadeObjects[object.sourceIndex]=object;
        nereidFadeTimers[object.sourceIndex]=setTimeout("nereidFade(nereidFadeObjects["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate);
    }
}