<!-- 
function create(path,strWidth,strHeight,titre) { 

 	w = strWidth;
	h = strHeight;
	pw = parseInt((screen.width-w)/2);
	ph = parseInt((screen.height-h)/2);
  	storywin = window.open('','','width='+ strWidth +',height='+ strHeight +',scrollbars=no,resizable=no,screenX='+ pw +',screenY='+ ph +',left='+ pw +',top='+ ph +''); 
  	with (storywin.document)
  { 
      writeln('<html><head>')
      writeln('<title>'+ titre +'</title>')
      writeln('<SCRIPT>')
      writeln('    load_img = new Image();')
      writeln('    load_img.src = \''+ path +'\';')
      writeln('    function replace_img(){')
      writeln('        if (load_img.complete) {')
      writeln('            document[\'target_img\'].src=load_img.src;')
      writeln('            clearInterval(timerid);')
      writeln('        }')
      writeln('    }')
      writeln('    timerid = setInterval("replace_img()", 10);')
      writeln('</SCRIPT>')
      writeln('<link rel="stylesheet" href="css/style.css" type="text/css">')	  
      writeln('</head>')
      writeln('<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">')
      writeln('<IMG name=target_img SRC=images/patience.gif> ')
      writeln('<br><center><a href="javascript:;" onClick="javascript:window.close();">Fermer la fênetre</a></center>')
      writeln('</body></html>')	  
  }
 	if (eval('storywin.focus()')) {
	win.moveTo(pw, ph);
	} 
 
} 
// --> 
